*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background-color: #ffffff;
    overflow-x:hidden;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 80px;
}

.logo{
    font-weight:800;
    font-size:24px;
}

.nav-links{
    display:flex;
    gap:30px;
    font-size:14px;
    color:#333;
}

.menu-btn{
    border:1px solid #ddd;
    padding:10px 18px;
    border-radius:25px;
    font-size:13px;
}

/* HERO SECTION */
.hero{
    position:relative;
    padding:100px 80px 40px 80px;
}

.hero h1{
    font-size:80px;
    font-weight:900;
    line-height:0.95;
    letter-spacing:-3px;
    max-width:900px;
}

/* RIGHT CONTENT BLOCK */
.hero-content{
    position:absolute;
    right:400px;
    top:210px;
    max-width:420px;
}

.about-row{
    display:flex;
    align-items:center;
    gap:15px;
    font-weight:600;
    margin-bottom:20px;
}

.dot{
    width:6px;
    height:6px;
    background:#ff4d2d;
    border-radius:50%;
}

.hero-content p{
    font-size:14px;
    line-height:1.7;
    color:#555;
}

/* TRIANGLE SHAPE */
.hero-shape{
    position:absolute;
    right:80px;
    top:200px;
    width:120px;
    height:120px;
}

.triangle-black{
    width:0;
    height:0;
    border-left:120px solid #111;
    border-top:120px solid transparent;
    position:absolute;
    right:0;
}

.triangle-orange{
    width:0;
    height:0;
    border-left:60px solid #ff4d2d;
    border-top:60px solid transparent;
    position:absolute;
    right:0;
}

/* BIG SLIDER */
.slider-wrapper{
    margin-top:80px;
    overflow:hidden;
    white-space:nowrap;
}

.slider-track{
    display:inline-block;
    animation: scroll 25s linear infinite;
}

.slider-track span{
    font-size:220px;
    font-weight:900;
    margin-right:120px;
    color:#111;
}

@keyframes scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

/* RESPONSIVE */
@media(max-width:1200px){
    .hero h1{
        font-size:70px;
    }

    .hero-content{
        position:relative;
        right:auto;
        top:auto;
        margin-top:40px;
    }

    .hero-shape{
        display:none;
    }

    .slider-track span{
        font-size:140px;
    }
}
.image-banner{
    width:100%;
    height:600px; /* adjust if needed */
    overflow:hidden;
}

.image-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
/* SECTION */
.section{
    padding:80px 140px;
    position:relative;
}

/* TOP LABEL */
.label{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:12px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:70px;
    font-weight:500;
}

.label span{
    width:6px;
    height:6px;
    background:#ff4d2d;
    border-radius:50%;
}

/* MAIN GRID */
.grid{
    display:grid;
    grid-template-columns: 1.35fr 1fr;
    gap:140px;
    align-items:start;
}

/* LEFT BIG TEXT */
.big-text{
    font-size:54px;
    font-weight:900;
    line-height:1.15;
    letter-spacing:-1.2px;
    max-width:880px;
}

/* RIGHT COLUMN */
.right{
    display:flex;
    flex-direction:column;
}

/* IMAGE */
.image-box img{
    width:60%;
    height:480px;
    object-fit:cover;
}

/* AVATAR + DESCRIPTION ROW */
.info-row{
    display:flex;
    gap:20px;
    align-items:flex-start;
    margin-top:25px;
}

/* AVATARS */
.avatars{
    display:flex;
    align-items:center;
}

.avatars img{
    height:42px;
    border-radius:50%;
    border:3px solid #ededed;
    margin-left:-12px;
}

.avatars img:first-child{
    margin-left:0;
}

.plus{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-left:-12px;
}

/* DESCRIPTION */
.description{
    font-size:14px;
    line-height:1.7;
    color:#555;
    max-width:360px;
}

/* DIVIDER */
.divider{
    height:1px;
    background:#dadada;
    margin:35px 0;
}

/* STATS */
.stats{
    display:flex;
    gap:120px;
}

.stat-number{
    font-size:58px;
    font-weight:600;
    color:#333;
}

.stat-text{
    font-size:13px;
    color:#666;
    margin-top:12px;
    line-height:1.6;
    max-width:190px;
}

.star{
    position: relative;
    bottom:100px;
    left:160px;
    width:90px;
    height:100px;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .big-text{
        font-size:38px;
    }

    .stats{
        gap:60px;
    }

    .star{
        display:none;
    }
}
/* SECTION */
.services{
    padding:60px 140px;
}

/* TOP HEADER */
.services-top{
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap:120px;
    margin-bottom:100px;
}

.label{
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
}

.label::before{
    content:"•";
    font-size:20px;
}

.title{
    font-size:40px;
    font-weight:900;
    line-height:1.15;
    margin-top:25px;
    letter-spacing:-1px;
}

.right-text p{
    font-size:20px;
    color:#555;
    line-height:1.7;
    max-width:400px;
    margin-bottom:25px;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ff4d2d;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    font-size:14px;
    text-decoration:none;
}

/* DIVIDER */
.divider{
    height:1px;
    background:#ddd;
    margin:10px 0;
}

/* SERVICE ITEM */
.service{
    display:grid;
    grid-template-columns: 120px 1fr 120px;
    align-items:center;
    padding:10px 0;
    transition:all .4s ease;
    cursor:pointer;
}

/* NUMBER */
.number{
    font-size:14px;
    color:#666;
}

/* TITLE */
.service-title{
    font-size:60px;
    font-weight:700;
    letter-spacing:-2px;
    line-height:1;
    transition:all .4s ease;
}

/* META */
.meta{
    font-size:14px;
    color:#555;
    margin-top:20px;
    transform:translateY(10px);
    transition:all .4s ease;
}

/* CIRCLE ARROW */
.circle{
    width:70px;
    height:70px;
    border-radius:50%;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .4s ease;
}

.circle span{
    transform:rotate(-45deg);
    font-size:20px;
}

/* HOVER EFFECT */
.service:hover .service-title{
    color:#ff4d2d;
    transform:translateX(20px);
}

.service:hover .meta{
    opacity:1;
    transform:translateY(0);
}

.service:hover .circle{
    background:#ff4d2d;
    border-color:#ff4d2d;
    color:#fff;
    transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:1200px){
    .services{
        padding:80px 40px;
    }

    .services-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .service{
        grid-template-columns:60px 1fr;
        gap:20px;
    }

    .circle{
        display:none;
    }

    .service-title{
        font-size:60px;
    }
}
.stats-area {
background:#f4f4f7;
padding:160px 0;
overflow:hidden;
}

.stats-item {
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
}

.stats-left {
width:40%;
}

.circle-grid {
display:grid;
grid-template-columns:repeat(4,110px);
gap:28px;
}

.circle-grid img,
.circle-grid div {
width:110px;
height:110px;
border-radius:50%;
}

.circle-grid img {
object-fit:cover;
animation:float 6s ease-in-out infinite;
}

.circle-grid div {
background:#dedede;
}

/* floating effect */
@keyframes float {
0% { transform:translateY(0px); }
50% { transform:translateY(-12px); }
100% { transform:translateY(0px); }
}

.stats-right {
width:60%;
}

.stats-right p {
font-size:14px;
margin-bottom:10px;
}

.stats-right h4 {
font-size:28px;
font-weight:700;
margin-bottom:20px;
}

.stats-right h1 {
font-size:220px;
font-weight:900;
line-height:1;
letter-spacing:-6px;
}

/* colors */
.yellow h1 { color:#f5a400; }
.yellow h4 { color:#f5a400; }

.pink h1 { color:#d95bb5; }
.pink h4 { color:#d95bb5; }

.orange h1 { color:#ff4a1c; }
.orange h4 { color:#111; }

/* animation */
.stats-item {
opacity:0;
transform:translateY(60px);
transition:all .8s ease;
}

.stats-item.show {
opacity:1;
transform:translateY(0);
}
.section {
  padding: 30px 8%;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

/* LEFT SIDE */
.left {
  flex: 1;
}

.small-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.small-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff5722;
  border-radius: 50%;
}

.big-title {
  font-size: 90px;
  font-weight: 900;
  line-height: 0.95;
}

/* RIGHT SIDE */
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.card {
  background: #e9e9e9;
  padding: 60px 50px;
  position: relative;
}

.step {
  width: 70px;
  height: 70px;
  background: #ff5722;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
}

.card-content {
  margin-top: 60px;
}

.card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 400px;
}
.team-section{
  padding:80px 0;
  overflow:hidden;
  background-color: black;
}

.team-title{
  text-align:center;
  font-size:90px;
  font-weight:800;
  color:white;
  line-height:1;
  margin-bottom:60px;
}

.team-slider{
  overflow:hidden;
  position:relative;
}

.team-track{
  display:flex;
  gap:30px;
  animation:scrollSlider 25s linear infinite;
}

.team-card{
  min-width:320px;
  height:420px;
  border-radius:25px;
  overflow:hidden;
  transition:0.4s ease;
}

.team-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:25px;
  transition:0.4s ease;
}

/* Hover Effect */
.team-card:hover img{
  border-radius:50px;
  transform:scale(1.08);
}

/* Slider animation */
@keyframes scrollSlider{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* Responsive */
@media (max-width:768px){
  .team-title{
    font-size:48px;
  }

  .team-card{
    min-width:240px;
    height:320px;
  }
}
.awards-section{
  width:100%;
  padding:120px 0;
  background:#000;
}

.awards-label{
  width:85%;
  margin:auto;
  color:#ff4d00;
  font-size:14px;
  margin-bottom:20px;
}

.awards-list{
  width:85%;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.award-row{
  display:grid;
  grid-template-columns: 120px 1fr 160px 40px;
  align-items:center;
  padding:28px 30px;
  background:#1c1c1c;
  color:#aaa;
  font-size:16px;
  transition:all .35s ease;
  position:relative;
  cursor:pointer;
}

/* Hover entire row when hovering title */
.award-row:hover{
  background:#ff4d00;
  color:#fff;
  transform:translateX(8px);
}

/* Title style */
.award-title{
  font-weight:600;
  letter-spacing:0.5px;
}

/* Arrow animation */
.award-arrow{
  text-align:right;
  transition:all .35s ease;
}

.award-row:hover .award-arrow{
  transform:translate(6px,-6px);
}

/* Status fade effect */
.award-status{
  text-align:left;
  opacity:0.9;
}

/* Subtle glow effect */
.award-row:hover{
  box-shadow:0 10px 30px rgba(255,77,0,0.35);
}

/* Responsive */
@media (max-width:768px){

  .award-row{
    grid-template-columns: 80px 1fr 100px 30px;
    padding:20px;
    font-size:14px;
  }

}
.layout-root {
  max-width: 1400px;
  margin: auto;
  padding: 80px 60px 40px;
}

/* Top Grid */
.layout-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Hero Text */
.hero-copy h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 40px;
}

/* Social Row */
.social-row {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* Side Columns */
.nav-block,
.info-block {
  max-width: 300px;
}

/* Head Labels */
.block-label {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
}

.block-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff4d2e;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Link Chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #dedede;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}

/* Contact Details */
.info-text p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

/* Large Brand */
.brand-mark {
  font-size: 220px;
  font-weight: 900;
  margin-top: 100px;
  letter-spacing: -5px;
}

/* Bottom Footer */
.footer-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  color: #333;
}

.footer-links-row {
  display: flex;
  gap: 30px;
}