html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}
* {
  -webkit-text-size-adjust: 100%;
}

:root {
    color-scheme: light;
}

html,
body {
    background: #ffffff;
    color: #111111;
}

.hero {
  height: 800px;
  width: 100%;
  background: url("img/7.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Black overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 1.2;

}

.hero h1 span {
  color: #ff7a00;
   font-family:"Sekuya",system-ui;
    font-weight:100;
    letter-spacing:1px;
    color:#ff7a00;
 font-size: 46px;
}

.hero p {
  margin-top: 15px;
  font-size: 2rem;
  color: #ddd;

}

.btn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 28px;
  background: #ff7a00;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
padding:13px 55px;

    background:#ff7a00;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    border:2px solid #ff7a00;

    font-size:35px;

    font-weight:600;

    transition:.35s ease;


}

.btn:hover {
   background:transparent;

    color:#ff7a00;

}

/*==========================
        HEADER
==========================*/

.top-bar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 3%;

}

.logo{

    font-size:32px;
    font-family:"Sekuya",system-ui;
    font-weight:100;
    letter-spacing:1px;
    color:#ff7a00;

}

.header-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.contact-btn {
    font-size: 22px !important;
}

/*==========================
      CONTACT BUTTON
==========================*/


/*==========================
      EXPLORE BUTTON
==========================*/

.menu-trigger{

    display:flex;

    align-items:center;

    color:#ff7a00;

    text-decoration:none;

    font-size:25px;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s ease;

}

.menu-trigger::after{

    content:"";

    margin-left:8px;

    transition:.35s;

}

.menu-trigger:hover{

    color:#111;

    transform:translateX(5px);

}

.menu-trigger:hover::after{

    transform:translateX(6px);

}

/*==========================
        SIDE MENU
==========================*/

.side-menu{

    position:fixed;

    top:0;

    right:-350px;

    width:320px;

    height:100vh;

    background:#111;

    display:flex;

    flex-direction:column;

    padding-top:100px;

    transition:.4s ease;

    z-index:9999;

}

.side-menu.active{

    right:0;

}

.side-menu a{

    color:#fff;

    text-decoration:none;

    padding:18px 40px;

    font-size:30px;

    transition:.3s;

}

.side-menu a:hover{

    background:#ff7a00;

}

.close-btn{

    position:absolute;

    top:25px;

    right:30px;

    color:#fff;

    font-size:40px;

    cursor:pointer;

}

/*==========================
        OVERLAY
==========================*/

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.overlay.active{

    opacity:1;

    visibility:visible;

}
/* SECTION */
.hero-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  background: url("img/b3.png") center center / cover no-repeat;

}

/* HEADER */
.main-header {
  width: 100%;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically align */
  padding: 20px 3%;
  margin-left: -10px;
}

.logo {
  font-size: 32px;
  font-family: "Sekuya", system-ui;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 1px;
  color: #ff7a00;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 18px;
  transition: 0.3s ease;
  border: 2px solid #ff7a00;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #ff7a00;
    transition: all 0.35s ease;
    letter-spacing: 1px;
}

.contact-btn:hover {
  background: transparent;
  color: #ff7a00;
}

.gallery-section{
    width: 90%;
    max-width: 1400px;
    margin: 80px auto;
   margin-top: 60px;
 }

.gallery-row{
    display: grid;
    gap: 25px;
    margin-bottom: 25px;
}

/* Two images */
.gallery-row.two{
    grid-template-columns: repeat(2,1fr);
}

.gallery-row img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    transition: 0.4s ease;
}

.gallery-row.one img{
    width: 50%;
}

.gallery-row img:hover{
    transform: scale(1.03);
}

.gallery-btn{
    text-align: center;
    margin: 60px 0 20px;
}

.view-more-btn{
    display: inline-block;
    padding: 16px 42px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #ff7a00;
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}

.view-more-btn:hover{
    background: #fff;
    color: #ff7a00;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,122,0,0.25);
}


.services-section{
    position: relative;
    background: url("img/bg.avif") center/cover no-repeat;
}

.services-overlay{
    width: 100%;
    background: rgba(0,0,0,0.75);
    padding: 100px 0;      /* Move the padding here */
}
.services-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.services-heading{
    margin-bottom:70px;
}

.small-title{
    color:#ff7a00;
    font-size:20px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.services-heading h2{
    font-size:64px;
    color:#fff;
    font-weight:700;
    margin:0;
}

/* Grid */

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Cards */

.service-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    padding:35px;
    border-radius:20px;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    background:rgba(255,122,0,.15);
    border-color:#ff7a00;
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:28px;
}

.service-card p{
    color:#d5d5d5;
    line-height:1.8;
    font-size:28px;
}

/* Last Box */

.center-card{
    grid-column:1 / 3;
    width:50%;
    justify-self:center;
}

.clients-section{
    width:100%;
    padding:100px 40px;
    background:#fff;
    box-sizing:border-box;
   margin-top: -50px;
}

.clients-heading{
text-align: center;
    margin-bottom:50px;

}

.clients-heading h2{
   font-size: 35px;
  font-family: "Sekuya", system-ui;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 1px;
  color: #ff7a00;
}

/* Swiper */

.clientsSwiper{

    width:100%;

}

.swiper-wrapper{

    align-items:center;

}

.swiper-slide{

    display:flex;
    justify-content:center;
    align-items:center;

}

/* Card */

.client-card{

    width:100%;
    height:80px;

    background:#fff;

    border-radius:22px;

    border:1px solid #ececec;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.client-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

}

.client-card h3{
    font-size:18px;
    color:#000;
    font-weight:400;   /* Normal */
text-align: center;
    width: 100%;
    margin: 0;
}
/* Buttons */

.client-buttons{

    display:flex;
    justify-content:flex-end;
    gap:15px;

    margin-top:45px;

}

.client-buttons button{

    width:120px;
    height:50px;

    border:none;

    border-radius:40px;

    background:#ff7a00;

    color:#fff;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.client-buttons button:hover{

    background:#111;

}

/*=========================
        ABOUT SECTION
=========================*/

.about-section{
   margin-top: -20px;
    padding:100px 80px;

    background:#f6f6f6;

}

.about-container{

    max-width:1400px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

/* Left Image */

.about-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.about-image img{

    width:420px;

    height:420px;

    border-radius:50%;

    object-fit:cover;

    border:10px solid #fff;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/* Right Content */

.about-content{

    flex:1.2;

}

.section-subtitle{

    color:#ff7a00;

    letter-spacing:4px;

    font-size:15px;

    text-transform:uppercase;

    font-weight:600;

}

.about-content h2{

    margin:18px 0 25px;

    font-size:48px;

    color:#111;

    line-height:1.2;

}

.about-content p{

    color:#666;

    font-size:20px;

    line-height:1.9;

    margin-bottom:20px;

text-align: justify;


}

/* Button */

.about-btn{

    display:inline-block;

    margin-top:15px;

    padding:15px 35px;

    background:#ff7a00;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;
   font-size: 20px;
    transition:.3s;

}

.about-btn:hover{

    background:#111;

}

/*=========================
    LIGHT DESK SECTION
=========================*/

.equipment-section{

    padding:100px 40px;

    background:#ffffff;

}

.equipment-heading{

    text-align:right;

    margin-bottom:60px;
font-family: "Sekuya", system-ui;
  font-style: normal;
  letter-spacing: 1px;


}

.equipment-heading span{

    color:#ff7a00;

    font-size:20px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:200;

}

.equipment-heading h2{

    margin-top:12px;

    font-size:30px;

    color:#111;

    font-weight:200;

}

/* Grid */

.equipment-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/* Card */

.equipment-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    height:320px;

    cursor:pointer;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.equipment-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.equipment-card:hover img{

    transform:scale(1.08);

}

/* Bottom Text */

.equipment-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:22px;

    background:linear-gradient(transparent,rgba(0,0,0,.85));

    color:#fff;

    font-size:22px;

    font-weight:600;

}

.footer{
    background:#111;
    color:#fff;
    padding:60px 8% 20px;
    font-family:"Poppins",sans-serif;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:100px;
    flex-wrap:wrap;
}

.footer-left,
.footer-right{
    display:flex;
    flex-direction:column;
}

.footer h3{
    color:#ff7a00;
    font-size:30px;
    margin-bottom:20px;
}

.footer-left a{
    color:#fff;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
     font-size:25px;
}

.footer-left a:hover{
    color:#ff7a00;
    padding-left:8px;
}

.footer-contact{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    text-decoration:none;
    margin-bottom:18px;
    transition:.3s;
   font-size: 30px;
}

.footer-contact img{
    width:26px;
    height:26px;
}

.footer-contact:hover{
    color:#ff7a00;
    transform:translateX(5px);
}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    text-align:center;
    color:#aaa;
    font-size:20px;
}

/*=========================
 TRANSITION
=========================*/

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #ff7a00;
}

/* Slide from left */
.slide-left {
    opacity: 0;
    transform: translateX(-120px);
    animation: slideLeft 1.3s ease-out forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }

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

.contact-btn {
    opacity: 0;
    transform: translateY(-80px);
    animation: slideFromTop 1s ease-out forwards;
    animation-delay: 0.2s; /* Starts after the heading animation */
}

@keyframes slideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial State */

.gallery-row img,
.gallery-btn {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Visible State */

.gallery-row img.show,
.gallery-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Image hover */

.gallery-row img {
    transition: transform 0.4s ease, opacity 0.8s ease;
}

.gallery-row img:hover {
    transform: scale(1.05);
}

/* Initial state */
.animate-left {
    opacity: 0;
    transform: translateX(-150px);
}

/* Animation starts */
.animate-left.show {
    animation: slideFastLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideFastLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }

    70% {
        opacity: 1;
        transform: translateX(15px); /* Slight overshoot */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Initial state */
.about-image,
.about-content {
    opacity: 0;
    transition: all 1s ease;
}

/* Image comes from left */
.about-image {
    transform: translateX(-100px);
}

/* Content comes from right */
.about-content {
    transform: translateX(100px);
}

/* Active state */
.about-image.show,
.about-content.show {
    opacity: 1;
    transform: translateX(0);
}

/* Initial state */
.equipment-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.equipment-card.show {
    opacity: 1;
    transform: translateY(0);
}