/* =========================
   GLOBAL RESET (IMPORTANT)
========================= */

html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* =========================
   IMAGES RESPONSIVE
========================= */

img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   FLEX LAYOUT FIX
========================= */

.container, .row{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* =========================
   CARDS / BOXES
========================= */

.card{
  width: 100%;
  margin-bottom: 15px;
  box-sizing: border-box;
}

/* =========================
   BUTTONS
========================= */

button, .btn{
  cursor: pointer;
}

/* =========================
   TABLE FIX
========================= */

.table-responsive{
  overflow-x: auto;
}

/* =========================
   MOBILE RESPONSIVE DESIGN
========================= */

@media (max-width: 768px){

  .container{
    width: 95%;
    margin: auto;
  }

  .row{
    flex-direction: column;
  }

  .card{
    width: 100%;
  }

  button, .btn{
    width: 100%;
    padding: 12px;
  }

  .navbar{
    flex-direction: column;
  }

}/* ========================= */
/* GLOBAL CSS */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#020617;
    overflow-x:hidden;
}

/* ========================= */
/* NAVBAR START */
/* ========================= */

.navbar{
    width:100%;

    padding:22px 8%;

    position:relative;
    top:0;
    left:0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:999;

    background:rgba(0,0,0,0.25);

    backdrop-filter:blur(12px);

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

/* LOGO */

.logo{
    color:#ff7b00;

    text-decoration:none;

    font-size:28px;
    font-weight:700;
}
.logo-box{
    color:#ff8c00;
    display:flex;
    flex-direction: column;
}
.logo-box-img{
    width: 100%;
    flex-direction: row;
}

.logo{
    color: #d97706;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.1;
}

.subtitle-image{
    margin-top: 10px;
    text-align: center;
}

.subtitle-image{
    width: 400px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    flex-direction:column;
}
.experience{
    margin-top: -0px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.experience2{
    margin-top: 2px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
.line{
    width:120px;
    height:3px;
    background:#ff8c00;
    border-radius:50px;
    margin:18px auto 16px;
    position:relative;
}

.line::after{
    content:"";
    position:absolute;
    right:-6px;
    top:50%;
    transform:translateY(-50%);
    width:10px;
    height:10px;
    background:#ff8c00;
    border-radius:50%;
    box-shadow:0 0 10px rgba(255,140,0,.7);
}


.subtitle-box p{
    color:#d8dbe8;
    font-size:16px;
    line-height:1.6;
}

@media(max-width:768px){

.subtitle-box{
    padding:22px;
    width:90%;
}

.subtitle-box h3{
    font-size:22px;
}

.subtitle-box p{
    font-size:15px;
}

}



/* NAV LINKS */

.nav-links{
    display:flex;
    gap:35px;

    list-style:none;
}

.nav-links a{
    color:#fff;

    text-decoration:none;

    font-size:16px;
    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{
    color:#ff7b00;
}

/* ACTIVE LINK */

.nav-links .active{
    color:#ff7b00;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.0)
    ),
    url('/images/hero.jpeg');

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;
    padding-top:120px;

}

/* OVERLAY */

.hero-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.80) 15%,
        rgba(0,0,0,0.20) 100%
    );
}

/* CONTAINER */

.hero-container{
    width:100%;

    padding:0 8%;

    position:relative;
    z-index:2;
}

/* CONTENT */

.hero-content{
    max-width:750px;
}

/* HEADING */

.hero-content h1{
    color:#fff;

    font-size:85px;
    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;
}

/* TECHNOLOGY WORD */

.hero-content h1 span{
    color:#d97706;

    text-shadow:none;
}

/* PARAGRAPH */

.hero-content p{
    color:#d1d5db;

    font-size:22px;

    line-height:1.8;

    margin-bottom:40px;

    max-width:650px;
}

/* BUTTON AREA */

.hero-buttons{
    display:flex;
    gap:20px;
}

/* BUTTONS */

.btn-primary,
.btn-secondary{
    display:inline-block;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;
    font-weight:600;

    transition:0.4s;
}

/* PRIMARY */

.btn-primary{
    background:
    linear-gradient(
        135deg,
        #ff7b00,
        #ffae00
    );

    color:#fff;
}

/* SECONDARY */

.btn-secondary{
    border:2px solid #ff7b00;

    color:#fff;
}

/* HOVER */

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-6px);

    box-shadow:
    0 10px 30px rgba(255,123,0,0.4);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    background:#08111f;

    padding:35px 8%;
}

.footer-content{
    text-align:center;
}

.footer-content h2{
    color:#fff;

    margin-bottom:10px;
}

.footer-content p{
    color:#cbd5e1;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px){

    .navbar{
        flex-direction:column;

        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;

        justify-content:center;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero-content h1{
        font-size:58px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:600px){

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}
html, body{
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
}

@media(max-width:600px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}
.logo-box{
    display: flex;
    flex-direction: column;
}
.logo-box img{
    width: 100px;
    flex-direction: row;
}
