               /* =============================
   Variables
   ============================= */
:root {
    /* Background Colors */
    --background-dark-100: #000000; 
    --background-dark-90: #222222;
    --background-dark-95: #282828;
    --background-dark-80: #333333;
    --background-dark-70: #444444;
    --background-orange: #ff714a;

    /* Text Colors */
    --color-white-100: #ffffff;
    --color-white-95: #f5f5f5;
    --color-white-80: #d5d5d5;
    --color-white-60: #aaaaaa;

    /* Font Sizes (fixed units) */
    --font-size-48: 48px;
    --font-size-24: 24px;
    --font-size-21: 21px;
    --font-size-18: 18px;
    --font-size-14: 14px;
    --font-size-12: 12px;
    --font-size-11: 11px;

    /* Transitions */
    --transition-default: 0.25s ease;
}

/* =============================
   Scrollbar Styles
   ============================= */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--background-dark-70);
}
::-webkit-scrollbar-thumb {
    background: var(--background-orange);
}

/* =============================
   Reset & Base Styles
   ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Poppins", sans-serif;
    color: var(--color-white-95);
}

body {
    height: 100vh;
    background: var(--background-dark-100);
}

li {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-white-95);
}

:is(h1, h2, h3, h4, h5, h6) {
    font-weight: 600;
}

h1 {
    font-size: var(--font-size-48);
    margin-bottom: 10px;
}

h2 {
    font-size: var(--font-size-21);
    margin-bottom: 30px;
    box-shadow: inset 0 -2px 0 var(--background-orange); /* fixed px */
    width: fit-content;
}

h3 {
    font-size: var(--font-size-18);
    margin-bottom: 5px;
}

p,
blockquote {
    color: var(--color-white-80);
    font-size: var(--font-size-14);
    line-height: 1.8;
}

::selection {
    background: var(--background-orange);
    color: var(--color-white-100);
}

ion-icon {
    --ionicon-stroke-width: 20px;
}

/* =============================
   Main Container
   ============================= */
.container {
    position: relative;
    max-width: 1440px;
    height: 100vh;
    margin: auto;
    overflow: hidden;
}

/* =============================
   Mobile Navbar
   ============================= */
.nav-mobile {
    position: fixed;
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--background-dark-90);
    border-bottom: 1px solid var(--background-dark-70);
    padding: 10px 20px;
    z-index: 100;
}

.nav-mobile .navbar-brand {
    display: flex;
    align-items: center;
}

.nav-mobile .brand-img {
    width: 35px;
    margin-right: 10px;
}

.nav-mobile .brand-name {
    font-size: var(--font-size-18);
    margin-bottom: 0;
}

.nav-mobile .menu-toggler {
    font-size: var(--font-size-24);
    cursor: pointer;
}

/* =============================
   Sidebar
   ============================= */
.side-bar {
    position: absolute;
    width: 160px;
    height: 100%;
    padding: 30px 0;
    text-align: center;
    background: var(--background-dark-90);
    overflow-y: auto;
    display: table;
    z-index: 50;
}

.side-bar .brand-img {
    width: 80px;
    margin-bottom: 20px;
}

.side-bar .brand-name {
    line-height: 1;
    font-size: var(--font-size-24);
    margin-bottom: 30px;
}

/* Sidebar Nav */
.nav li a {
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--background-dark-80);
    font-size: var(--font-size-14);
    transition: background var(--transition-default);
}

.nav li:last-child a {
    border-bottom: 1px solid var(--background-dark-80);
}

.nav li a:hover {
    background: var(--background-dark-80);
    box-shadow: inset -2px 0 0 var(--color-white-95);
}

.nav li a.active {
    background: var(--background-dark-80);
    box-shadow: inset -2px 0 0 var(--background-orange);
}

/* Social Buttons */
.social-btn-groups .btn {
    padding: 4px 7px 0 7px;
    margin: 40px 2px;
    background: var(--background-dark-70);
    color: var(--color-white-60);
}

.social-btn-groups .btn:hover {
    background: var(--background-orange);
    color: var(--color-white-100);
}

/* Sidebar Footer */
.side-bar-footer {
    display: table-row;
    vertical-align: bottom;
}

.side-bar-footer .copyright {
    font-size: var(--font-size-12);
    color: var(--color-white-60);
}

/* =============================
   About Section
   ============================= */
.about {
    width: calc(100% - 165px);
    height: 100%;
    background: var(--background-dark-90);
    margin-left: auto;
    overflow-y: auto;
}

/* Hero */
.hero {
    display: flex;
}

.hero-img-bx {
    width: 50%;
    max-height: 100%; /* fixed */
}

.hero-img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    width: 50%;
    background: var(--background-dark-80);
    padding: 80px;
    display: table;
}

.hero-content-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.hero-content .title {
    font-size: var(--font-size-14);
    color: var(--color-white-60);
}

.hero-content .desc {
    margin-bottom: 20px;
}

.hero-content .desc p {
    margin-bottom: 10px;
}

.hero-content .btn {
    padding: 8px 30px;
    border: 2px solid var(--background-orange);
    font-size: var(--font-size-14);
    transition: var(--transition-default);
}

.hero-content .btn:hover {
    background: var(--background-orange);
    color: var(--color-white-100);
}

/* =============================
   Services
   ============================= */
.about-inner {
    padding: 80px;
}

.service {
    margin-bottom: 50px;
}

.grid-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-item .item {
    display: flex;
}

.grid-item .item-icon {
    font-size: 40px;
    margin-right: 30px;
    color: var(--color-white-60);
}

.item-wrapper p {
    font-size: var(--font-size-12);
}

/* =============================
   Testimonials
   ============================= */
.testimonials {
    margin-bottom: 50px;
}

.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonials-content {
    flex: 1 1 45%;
}

.testimonials-text {
    background: var(--background-dark-95);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid var(--background-dark-70);
}

.testimonials-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--background-dark-70);
    margin-right: 10px;
    object-fit: cover;
}

.author-info .author-title {
    font-size: var(--font-size-11);
    color: var(--color-white-60);
}
/* about section clients structure style */

.clients-row {
    display: flex;
    justify-content: space-between;
}

.clients-row img {
    width: 100px;
    margin: 0 20px;
    opacity: 0.5;
}

.brand-name,
.brand-name a {
  box-shadow: none;
}

.Portfolio-work {
    max-width: 700px;
    max-height: 800px;
    height: 100%;
    width: 100%;
    border: 2px solid black;


}




