/* FONT & GLOBAL */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#ff7a00;
  --primary-soft:#ff9a3c;

  --dark:#020617;
  --dark-soft:#0b1220;
  --card:#0f172a;

  --text-light:#e2e8f0;
  --text-muted:#94a3b8;

  --glass:rgba(255,255,255,0.05);
}

img{
  max-width:100%;
  height:auto;
}
  
/* BODY */
body {
  font-family:'Poppins',sans-serif;
  background:var(--light);
  color:var(--text);
  scroll-behavior:smooth;
  padding-top:70px;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:70px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom:1px solid rgba(255,255,255,0.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index:1000;
  transition: all 0.3s ease;
}

.navbar *{
  display:flex;
  align-items:center;
}

.navbar.scrolled{
  height:60px;
}

.navbar.scrolled h1{
  font-size:19px;
}

.navbar.scrolled a{
  font-size:13.5px;
}

.nav{
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav .logo{
  display:flex;
  align-items:center;
  gap:20px;
}

nav h1{
  display:flex;
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 1px;
  align-items: center;
  line-height:1;
}

nav a{
  position:relative;
  display:flex;
  align-items:center;
  text-decoration: none;
  margin-left:15px;
  font-size: 14px;
  line-height:1;
  letter-spacing:0.5px;
  color:var(--dark);
  text-decoration:none;
  opacity:0.7;
  gap: 20px;
  flex-wrap: wrap;
  white-space: nowrap;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#f97316;
  transition:0.3s;
}

nav a:hover{
  opacity:1;
}

nav a:hover::after{
  width:100%;
}

.nav-left{
  display:flex;
  align-items:center;
}

.nav-left h1{
  color:var(--primary);
  font-weight:700;
  font-size:22px;
  letter-spacing:0.5px;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:35px;
}

.nav-right a{
  color:var(--dark);
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-right a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#ff7a00;
  transition:0.3s;
}

.nav-right a:hover{
  color:#fff;
}

.nav-right a:hover::after{
  width:100%;
}

/* HERO */
.hero{
  height:100vh;
  background:url("Hero/hero.jpeg");
  background-size: cover;
  background-position: center 60%;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

.hero::after{
  background: linear-gradient(
    to right,
    rgba(2,6,23,0.8),
    rgba(2,6,23,0.3)
  );
}

.hero-content{
  max-width:700px;
  padding: 0 20px;
  margin:auto;
  position:relative;
  text-align: center;
  z-index:10;
}

.hero h1{
  font-size: clamp(45px, 6vw, 75px);
  font-weight:700;
  line-height:1.1;
  margin-bottom:15px;
  color:#fff;
  letter-spacing:1px;
  text-shadow:0 15px 40px rgba(0,0,0,0.6);
}

.hero p{
  font-size:18px;
  color: #fff;
  letter-spacing:0.5px;
  margin-top:5px;
  margin-bottom: 30px;
  opacity:0.8;
}

/* OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(2,6,23,0.5));
}

/* BUTTON */
.btn{
  font-weight:500;
  letter-spacing:0.5px;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  margin:5px;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px) scale(1.05);
}

.primary{
 background:var(--primary);
 color:#fff;
 box-shadow:0 10px 25px rgba(255,122,0,0.3);
}

.outline{
  background:#f8fafc;
  color:#ff7a00;
  border:1px solid #f8fafc;
}

/* TITLE */
h2 {
  margin-bottom:40px;
  font-size: 25px;
  font-weight:600;
  color: #f97316;
  text-align: center;
}

h3 {
  margin-bottom:20px;
  font-size: 30px;
  font-weight:600;
  color: #f97316;;
  text-align: center;
}

/* SECTION */
.section{
  padding:120px 0;
  border:1px solid rgba(255,255,255,0.05)
}

section{
  margin-top:0px;
  padding:140px 0;
}

/* ABOUT */
.about{
  display:flex;
  align-items:center;
  gap:50px;
  padding:100px 0;
  justify-content: center;
}

.about-section {
  padding: 120px 0;
  background-attachment: fixed;
  background: url("Background/bg-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position:relative;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248,250,252,0.2);
}

.about-wrapper {
  max-width:1100px;
  margin:auto;
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-left {
  flex: 1;
}

.about-text{
  flex:1;
}

.about-left h5 {
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  color: #64748b;
  margin-bottom: 10px;
}

.about-left h3 {
  font-size:28px;
  color:var(--dark);
}

.about-card {
  background: #fff;
  color:#475569;
  border-radius:16px;
  padding:30px;
  border:1px solid rgba(0,0,0,0.05);
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-right img {
  width: 100%;
  height:100%;
  min-height:200px;
  border-radius: 20px;
  object-fit: cover;
}

.about-right img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.img-big {
  grid-row: span 2;
}

.about p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* MARQUEE */
.marquee{
  overflow:hidden;
}

.track{
  display:flex;
  gap:50px;
  animation:scroll 15s linear infinite;
}

.track img{
  height:40px;
  opacity:0.7;
}

@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* EXPERTISE */
.expertise-section{
  padding:120px 0;
  background: #fff;
  color:#1e293b;
}

.section-header{
  text-align:center;
  margin-bottom:70px;
}

.section-header h2{
  font-size:34px;
  font-weight:600;
  color:#1e293b;
}

.section-header h5{
  color:#64748b;
  font-size:14px;
}

.expertise-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.expertise-card{
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius:20px;
  padding:30px;
  color:#fff;
  transition:0.4s;
  box-shadow:0 15px 40px rgba(249,115,22,0.3);
}

.expertise-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,122,0,0.2),transparent);
  opacity:0;
  transition:0.4s;
}

.expertise-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 60px rgba(249,115,22,0.5);
  border:1px solid rgba(255,122,0,0.4);
}

.expertise-card:hover::before{
  opacity:1;
}

.expertise-card .icon{
  font-size:28px;
  margin-bottom:15px;
  color:#fff;
}

.expertise-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#ffffff;
  font-weight:600;
}

.expertise-card p{
  font-size:14px;
  color:rgba(255,255,255,0.85);
  line-height:1.7;
}

/* TECHNICAL SKILLS */
.tech-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.tech-card{
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius:20px;
  padding:30px;
  color:#fff;
  transition:0.4s;
  box-shadow:0 15px 40px rgba(249,115,22,0.3);
}

.tech-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 60px rgba(249,115,22,0.5);
}

.tech-card h3{
  color:#ffffff;
  font-size:18px;
  margin-bottom:10px;
}

.tech-card p{
  color:#ffffff;
  font-size:14px;
}


/* TOOLS */
.tools-section{
  background:#ffffff;
}

.tools-grid{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:60px;
  flex-wrap:wrap;
  margin-top:40px;
}

.tool-item{
  text-align:center;
  transition:0.3s;
}

.tool-item img{
  width:80px;
  height:80px;
  object-fit:contain;
  margin-bottom:10px;
}

.tool-item:hover{
  transform:scale(1.1);
}

.tool-item p{
  font-size:14px;
  color:#1e293b;
}


/* SOFT SKILLS */
.soft-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.soft-item{
  padding:10px 20px;
  border-radius:30px;
  background:#ff7a00;
  color:#fff;
  font-size:14px;
  transition:0.3s;
}

.soft-item:hover{
  background:#ea580c;
  transform:translateY(-3px);
}

/* BRAND EXPERIENCE */
.brand-section{
  padding:120px 0;
  background:#ffffff;
  text-align:center;
}

.brand-header h2{
  font-size:34px;
  font-weight:600;
  color:#1e293b;
  margin-bottom:60px;
}

.brand-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
  max-width:900px;
  margin:auto;
}

.brand-card img{
  width:100%;
  max-width:180px;
  height:auto;
  object-fit:contain;
}

/* PROJECTS */
.projects-section{
  padding: 120px 0;
  background-attachment: fixed;
  background: url("Background/bg-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position:relative;
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248,250,252,0.2);
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.project-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
}

.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(2,6,23,0.9), transparent);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
  opacity:0;
  transition:0.4s;
}

.project-overlay h3{
  color:#fff;
  font-size:20px;
  margin-bottom:5px;
}

.project-overlay p{
  color:#cbd5f5;
  font-size:14px;
}

.project-card:hover img{
  transform:scale(1.1);
}

.project-card:hover .project-overlay{
  opacity:1;
}

.project-card:hover{
  transform:scale(1.03);
}

.projects-list{
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:50px;
}

.project-group h3{
  font-size:22px;
  color:#ff7a00;
  margin-bottom:20px;
  border-left:4px solid #ff7a00;
  padding-left:12px;
}

.project-item{
  padding:15px 20px;
  background:#ffffff;
  border-radius:12px;
  margin-bottom:12px;
  border:1px solid rgba(0,0,0,0.05);
  transition:0.3s;
}

.project-item:hover{
  transform:translateX(8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.project-item h4{
  font-size:16px;
  color:#1e293b;
  margin-bottom:5px;
}

.project-item p{
  font-size:14px;
  color:#64748b;
}

/* FAT SECTION */
.fat-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:repeat(2,200px);
  gap:20px;
  margin-top:50px;
}

.fat-main{
  grid-row:span 2;
}

.fat-main img,
.fat-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  transition:0.4s;
}

.fat-main img:hover,
.fat-item img:hover{
  transform:scale(1.05);
}

/* CONTACT */
.contact-section{
  margin-top: 100px;
}

.contact-container {
  margin-top:40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-box{
  border-radius:0;
  font-weight:500;
  padding: 40px;
  color: #ffffff;
  transition:0.3s;
}

.contact-box:hover{
  transform:translateY(-5px);
}

.contact-box h4 {
  color:#ffffff;
  font-weight:600;
  letter-spacing:0.5px;
  margin-bottom: 15px;
  font-size: 20px;
}

.contact-box p {
  color:rgba(255,255,255,0.85);
  font-size: 16px;
}

.address {
 background: linear-gradient(135deg, #ea580c, #f97316);
}

.phone {
  background: linear-gradient(135deg, #f97316, #fb923c);
  text-align: center;
}

.email {
  background: linear-gradient(135deg, #fb923c, #fdba74); 
  text-align: center;
}

.contact-box a {
  color: #ffffff;
  text-decoration: none;
  border-bottom:1px solid rgba(255,255,255,0.5);
  transition:0.3s;
}

.contact-box a:hover{
  border-bottom:1px solid #fff;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* FOOTER */
footer{
  text-align:center;
  padding:40px;
  opacity:0.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{
    font-size:40px;
  }

  .about{
    flex-direction:column;
    text-align:center;
  }
}

@media(max-width:768px){
  .about-wrapper {
    flex-direction: column;
  }

  .about-right {
    grid-template-columns: 1fr;
  }

  .img-big {
    grid-row: span 1;
  }

}

@media(max-width:768px){
  .fat-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .fat-main{
    grid-row:span 1;
  }

  .fat-item{
    height:200px;
  }
}

@media(max-width:768px){
  .nav-right{
    display:none;
  }
}

@media(max-width:768px){
  .hero{
    height:80vh;
    background-position:center;
  }
}

@media(max-width:768px){
  .tools-grid{
    gap:30px;
  }

  .tool-item img{
    width:60px;
    height:60px;
  }
}

@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  section{
    padding:80px 0;
  }

  .section{
    padding:80px 0;
  }
}
