* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #17140C;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --yellow: #F6C557;
    --gray: #636363;
    --background: #17140C;
}

/* --------common element---------- */

ul {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* h1 {
  font-size: 36px;
  font-family: var(--headingFont);
  line-height: 1;
  color: var(--grey);
  font-weight: 400;
  letter-spacing: 4px;
}

h2 {
  font-size: 36px;
  font-family: var(--headingFont);
  line-height: 1;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 4px;
}

h3 {
  font-size: 20px;
  font-family: var(--headingFont);
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 4px;
} */

/* -----common class------ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px;
    border: 1px solid var(--gray);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn span {
    background: var(--yellow);
    color: black;
    padding: 6px 10px;
}

.btn:hover {
    background-color: var(--yellow);
    color: black;
}

.btn:hover span {
    background: white;
}

/* -------top ber------- */

.top-bar {
    background-color: transparent;
    backdrop-filter: blur(4px);
    color: var(--gray);
    font-size: 12px;
    padding: 18px;
    border-bottom: 0.1px solid var(--gray);
}

.top-bar .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .top-bar .center {
    width: 200px;
} */

.top-bar .right-prt {
    display: flex;
    justify-content: flex-end;
}

.top-bar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.top-bar li {
    cursor: pointer;
}

.top-bar .left ul li i {
    color: var(--yellow);
}

/* -----------NAVBAR-------- */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray);
    height: 70px;
    backdrop-filter: blur(4px);
}

.logo {
    border-right: 1px solid var(--gray);
    padding: 18px;
}

.logo a img {
    padding: 0 60px 0 20px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar ul li {
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar ul li:hover {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

.navbar ul li.active {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

.icons {
    display: flex;
    gap: 15px;
    padding-right: 35px;
}

.vertical-line {
    border-left: 1px solid var(--gray);
    height: 70px;
}

.icons button {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 20px 5px 0px 5px;
    margin: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.icons button:hover {
    background: var(--yellow);
    color: black;
    display: block;
}

/* --------DROPDOWN------ */

.dropdown {
    position: relative;
    list-style: none;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    opacity: 1;
    visibility: hidden;
    z-index: 2000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: white;
}

.dropdown-menu li a:hover {
    background-color: transparent;
    color: var(--yellow);
}

.dropdown hr {
    border: none;
    height: 1px;
    width: 180px;
    margin-left: 15px;
    background-color: var(--gray);
}

/* hero section */

.hero {
    min-height: 100vh;
    background:url("../img/banner.jpg") center/cover no-repeat;
    color: #fff;
    position: relative;
}

/* hero content */

.hero-content {
    max-width: fit-content;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 0.9;
    text-shadow: #000000;
}

.hero-content span {
    color: var(--yellow);
    font-weight: 400;
    
}

.hero-content strong {
    font-weight: 500;
}

.bottomtxt{
    background: linear-gradient(
        to top,
        rgb(255,255,255),
        rgb(0,0,0)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    margin: 25px 0 40px;
    font-size: 12px;
    color: var(--yellow);
}

/* category section */

.category-section {
    background: var(--background);
    color: #fff;
    padding: 50px 0px 0px 200px;
}

.category-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.category-header .left small {
    color: var(--yellow);
}

.category-header h2 {
    font-size: 25px;
    font-weight: 400;
    margin-top: 35px;
    max-width: 420px;
}

.category-header .right p {
    max-width: 380px;
    margin-top: 50px;
    padding-left: 60px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.5;
}

.category-cards {
    display: flex;
    gap: 10px;
    padding-bottom: 25px;
}

.card {
    position: relative;
    width: 220px;
    height: 330px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.num {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    z-index: 2;
}

.card-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.card-text h3 {
    color: #fff;
    font-size: 20px;
}

.card-text p {
    font-size: 14px;
    color: #ccc;
}

.category-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-footer .line {
    flex: 1;
    height: 1px;
    background: var(--gray);
}

/* circle-section */

.circle-section {
    padding: 70px 0px 0px 200px;
    background-color: var(--background);
}

.container-part {
    display: flex;
    justify-content: space-between;
}

.container-part .left1 {
    padding-top: 30px;
}

.container-part .right1 {
    padding-top: 120px;
    padding-right: 250px;
}

.circle-wrap {
  position: relative;
  width: 200px;
  height: 200px;
}

.circle-wrap svg {
  width: 100%;
  height: 100%;
  animation: spin 10s linear infinite;
  border: 1px solid var(--gray);
  border-radius: 50%;
}

.circle-text {
  font-size: 12px;
  letter-spacing: 5px;
  fill: var(--gray);
  text-transform: uppercase;
  
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.years {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.years .number {
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
}

.years .text {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2;
    color: white;
}

.years .text small {
    display: block;
    font-size: 25px;
    color: white;
    text-transform: none;
}

.text-part h3 {
    font-size: 30px;
    line-height: 1.2;
    color: white;
    max-width: 850px;
}

/* Work process section */

.design-container {
    display: flex;
    justify-content: space-between;
    padding: 50px 200px 0px 200px;
    background: var(--background);
    color: white;
    border-radius: 20px;
}

.work-process small {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 1.5px;
}

.work-process p {
    margin-top: 15px;
    font-size: 30px;
    color: #fff;
    max-width: 420px;
}

.right {
    width: 40%;
}

.years {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    margin-bottom: 60px;
}

.years .number {
    font-size: 100px;
    color: var(--yellow);
    font-weight: 500;
}

.years .text {
    font-size: 22px;
    line-height: 1.2;
}

.years small {
    color: #888;
    font-size: 16px;
}

.timeline {
    border-left: 1px solid #2a2a2a;
    padding-left: 40px;
}

.item {
    display: flex;
    gap: 28px;
    margin-bottom: 45px;
}

.step {
    font-size: 26px;
    color: #777;
}

.item h3 {
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 8px;
}

.item p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    max-width: 260px;
}

/* story section */

.story-section {
    background-color: var(--background);
    padding: 0px 50px 50px 30px;
    color: white;
}

.story-container {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    align-items: center;
}

/* LEFT IMAGE */
.story-image {
    position: relative;
}

.story-image img {
    width: 630px;
    height: 550px;
    display: block;
}

/* Quote Box */
.quote-box {
    position: absolute;
    bottom: 80px;
    left: 200px;
    background: var(--yellow);
    color: #111;
    padding: 30px;
    max-width: 280px;
    z-index: 1000;
}

.quote-box .quote {
    font-size: 50px;
    line-height: 0.8;
    display: block;
}

.quote-box p {
    font-size: 14px;
    margin: 10px 0;
}

.quote-box hr {
    margin: 15px 0;
    border: none;
    height: 1px;
    background: #222;
}

.quote-box h4 {
    margin: 0;
}

.quote-box small {
    font-size: 12px;
}

/* RIGHT CONTENT */
.story-content .tag {
    color: var(--yellow);
    font-size: 14px;
}

.story-content h2 {
    font-size: 30px;
    font-weight: 400;
    margin: 20px 0;
}

.story-content .desc {
    color: white;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 30px;
    
}

.story-content h3 {
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 50px;
}

.story-content ul {
    list-style: none;
    padding-left: 50px;
}

.story-content ul li {
    position: relative;
    font-size: 12px;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #ddd;
}

.story-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--yellow);
}

/* slider section */

.hero-strip {
    background: var(--background);
    padding: 60px 0px 100px 0px;
    color: #fff;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.feature h4 {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 6px;
}

.feature p {
    color: #aaa;
    font-size: 14px;
}

/* Marquee Text */
.marquee {
    width: 100%;
    overflow: hidden;
}

.track {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 72px;
    font-weight: 300;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
}

.track span {
    color: white;
}

.track .star {
    color: var(--yellow);
    font-size: 100px;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* featured section */

.featured {
    background: var(--background);
    padding: 100px 150px 100px 200px;
    color: #fff;
}

.featured-container {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 50px;
}

/* Left Text */
.featured-text .tag {
    color: var(--yellow);
    font-size: 12px;
}

.featured-text h2 {
    font-size: 21px;
    margin: 15px 0;
}

.featured-text p {
    color: var(--gray);
    font-size: small;
    line-height: 1.3;
    max-width: 320px;
}

.nav-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.nav-btns span {
    width: 55px;
    height: 30px;
    border: 1px solid var(--gray);
    border-radius: 22px;
    display: grid;   
    place-items: center;
    cursor: pointer;
}

.nav-btns span:hover{
    background-color: var(--yellow);
    color: black;
}

/* Cards */
.featured-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.card {
    background: var(--background);
    border: 1px solid var(--gray);
    padding: 8px 8px 0px 8px;
    text-align: center;
    transition: 0.3s;
    height: 425px;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
}

.card h4 {
    color: var(--yellow);
    font-size: 12px;
}

.card h3 {
    font-size: 12px;
    margin: 8px 0;
}

.card p {
    color: #aaa;
    font-size: 12px;
}

.price {
    display: block;
    margin: 12px 0;
    color: var(--yellow);
    font-size: 12px;
}

.card a {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    border: 1px solid var(--gray);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.card a:hover{
    background-color: var(--yellow);
    color: black;
}

/* company section */

.about-section {
    background: var(--background);
    padding: 100px 60px;
    color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Images */
.about-image {
    position: relative;
}

.about-image img {
    width: 550px;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.about-image .right img {
    width: 550px;
    height: 450px;
    position: relative;
    z-index: 1;
}

/* Shapes */

.shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--yellow);
    z-index: 2;
}

.shape-left {
    top: 40%;
    right: -30px;
    border-radius: 0 0 0 100%;
}

.shape-right {
    top: 40%;
    right: -30px;
    border-radius: 0 0 0 100%;
}

/* Text under left image */

.about-text {
    margin-top: 5px;
    color: #ccc;
    font-size: 15px;
    max-width: 480px;
    line-height: 1.6;
}

/* Button */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 5px 5px;
    border: 1px solid var(--gray); 
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn span {
    background: var(--yellow);
    color: #000;
    padding: 8px 10px;
}

.about-btn:hover {
    background: var(--yellow);
    color: #000;
}

/* Right Content */

.about-content .tag {
    color: var(--yellow);
    font-size: 10px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 32px;
    margin: 15px 0 40px;
    line-height: 1.2;
}

/* Discover section */

.projects-section {
    background: var(--background);
    padding: 50px 150px;
    color: #fff;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.tag {
    color: var(--yellow);
    font-size: 10px;
    letter-spacing: 1px;
}

.projects-header h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-top: 10px;
}

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

.project-card{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.project-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.project-card h3 {
    color: var(--yellow);
    margin: 20px 0 10px;
    font-size: 20px;
}

.project-card p {
    color: #ccc;
    font-size: 14px;
    max-width: 450px;
}

.project-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--yellow);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--yellow);
    padding-bottom: 3px;
}

.project-card img:hover {
    transform: scale(1.02);
}

/* our clients */

.testimonial-section {
    background: var(--background);
    padding: 120px 40px;
    text-align: center;
    color: #fff;
}

.tag {
    color: var(--yellow);
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonial-section h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.desc {
    max-width: 600px;
    margin: auto;
    color: #aaa;
    font-size: 15px;
    margin-bottom: 60px;
}

.testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.profile {
    text-align: center;
}

.profile img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.profile h3 {
    color: var(--yellow);
    margin-bottom: 5px;
    font-size: 22px;
}

.profile span {
    font-size: 14px;
    color: #ccc;
}

.nav-btn {
    width: 80px;
    height: 30px;
    border: 1px solid var(--gray);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--yellow);
    color: #000;
}


/* news section */

.blog-section {
    background: var(--background);
    padding: 100px 170px;
    color: #fff;
}

.blog-tag {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
}

.blog-card {
    background: transparent;
}

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.blog-meta {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.blog-meta .gold {
    color: var(--yellow);
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}

.blog-card p {
    font-size: 10px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 15px;
}

.blog-card a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
    border-bottom: 1px solid var(--gray);
}

.blog-card a:hover {
    color: var(--yellow);
}


/* footer  section */

.footer {
    background:var(--background);
    color: #ccc;
    padding: 80px 200px 30px 200px;
}

.newsletter {
    text-align: center;
    margin-bottom: 70px;
}

.small-title {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.newsletter h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.newsletter-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    border-bottom: 1px solid #444;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: var(--yellow);
    cursor: pointer;
    font-weight: bold;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col h4 span {
    color: var(--yellow);
}

.logo {
    color: #fff;
    font-size: 26px;
}

.logo span {
    color: var(--yellow);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 5px;
    font-size: 14px;
}

.footer-col ul li:hover{
    color: var(--yellow);
}

.footer-col p {
    font-size: 10px;
    line-height: 1.7;
}

.phone {
    margin-top: 15px;
}

.gold {
    color: var(--yellow);
}

.socials {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.socials span {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.socials span:hover {
    background: var(--yellow);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
}