:root {
    --gold: #FFD700;
    --gold-dark: #C9A800;
    --green: #00C851;

    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #1A1A1A;
    --dark4: #222222;

    --text: #F0EDE6;
    --muted: #999;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
}

ul {
    list-style: none;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: #fff;
        background: radial-gradient(circle at 95% 40%, /* Position glow at the far right */ rgba(255, 80, 50, 0.38) 0%, /* Start color: soft red/orange glow */ rgba(255, 80, 50, 0.15) 30%, rgba(44, 17, 17, 0) 70%), #141c23;

}

h1 {
    font-family: var(--font-display);
}

/* ---------------------------button------------ */
/* ================================
   FLOATING BUTTONS SECTION
================================ */
.floating-buttons-section {
    position: relative;
    z-index: 999;
}

/* Container */
.floating-buttons {
    position: fixed;
    right: 1.5rem;
    bottom: 1.2rem;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* 🔥 right align */
    gap: 12px;
}

/* WhatsApp Box */
.wa-box {
    display: flex;
    flex-direction: column;
    /* 🔥 message top */
    align-items: flex-end;
    gap: 6px;
}

/* ================================
   TOOLTIP MESSAGE
================================ */
.wa-msg {
    background: #0f0f0f;
    border: 1px solid #25D366;
    color: #25D366;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 6px;
    /* Smooth entry animation */
    animation: fadeSlideUp 0.6s ease;
}

/* ================================
   COMMON BUTTON STYLE
================================ */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 26px;
    color: #fff;
    text-decoration: none;

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Hover effect */
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

/* ================================
   WHATSAPP BUTTON
================================ */
.whatsapp {
    background: #25D366;
    font-size: 28px;

    animation: floatUp 3s ease-in-out infinite;
}

/* ================================
   CALL BUTTON
================================ */
.call {
    background: #0078ff;

    animation: floatDown 3s ease-in-out infinite;
}

/* ================================
   FLOAT ANIMATIONS
================================ */
@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* ================================
   TOOLTIP ANIMATION
================================ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 530px) {
    .floating-buttons {
        right: 0.8rem;
        bottom: 1rem;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .wa-msg {
        font-size: 12px;
        padding: 6px 10px;
    }
}
/* ---------header--------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#0c1a24;
    z-index: 100;
}

nav {
    /* max-width: 1200px; */
    margin: 0vw 3vw;

}

.top {
    margin-top: 5.5rem;
}

.nav-left {
    max-width: 27rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.logo {
    width: 4.3rem;
    height: 3.5rem;
}

.logo-text {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.name {
    font-family: 'Fredoka', sans-serif;
    text-align: start;
    padding-top: 5px;
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    text-shadow: 1px 1px 1px #ffee04;
}

.nav-data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.bar,
.close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 4rem;
    cursor: pointer;
    transition: opacity .1s, transform .2s;
}

.nav-toggle i {
    font-size: 1.6rem;
    color: white;
}

.close {
    opacity: 0;
}

@media screen and (max-width:769px) {
    .nav-left {
        max-width: 30rem;
    }

    .logo {
        width: 4.8rem;
        height: 3.8rem;

    }

    .logo-text {
        align-items: start;
    }

    .name {
        padding-top: 5px;
        font-weight: 700;
        font-size: 1.3rem;
        text-shadow: 1px 0.5px 1px #ff0404;
    }

    .top {
        margin-top: 4.5rem;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 4.6rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        pointer-events: none;
        transition: left 0.2s, opacity 0.1s;
        z-index: 100;
        background-color: var(--dark);
    }

    .nav-link {
        color: var(--muted) !important;
        font-size: 1.1rem !important;
        padding: 0.9rem 1rem;
        text-align: center;
    }

    a.nav-link.login-btn {
        border-radius: 10px;
        width: 70%;
    }

    .nav-menu::-webkit-scrollbar {
        width: 0;
    }

    .nav {
        padding: 0.4rem 0.5rem;
    }

    .nav-link {
        font-weight: 400;
    }

    .login-btn {
        padding: 1rem 16px !important;
        margin-right: 0.5rem;
        margin-top: 1rem;
        font-size: 1.1rem !important;
        border-radius: 30px;
        justify-content: center !important;
    }
}

.nav-link {
    color: var(--muted) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}


.nav-link i {
    font-size: 12px;
}

.show-menu {
    left: 0;
    opacity: 1;
    pointer-events: initial;
}

.show-icon .bar {
    opacity: 0;
    transform: rotate(90deg);
}


.show-icon .close {
    opacity: 1;
    transform: rotate(90deg);
}

.plus {
    margin-left: auto;
}

@media screen and (min-width: 769px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-list {
        height: 100%;
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;

    }

    .nav-link {
        height: 100%;
        /* padding: 0.3rem 0.7rem; */
        justify-content: initial;
        column-gap: .5rem;
        font-size: 1rem;

    }

    .nav-link:hover {
        color: var(--gold) !important;
    }

}


.login-btn {
    background-color: #ff6b53 !important;
    color: white !important;
    padding: 10px 16px !important;
    margin-left: 0.5rem;
    font-size: 1rem !important;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.login-btn:hover {
    background-color: #bb4a39 !important;
    color: white !important;
    border-radius: 3px !important;
}
.login-btn {
    background-color: #ff6b53;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

/* Coffee icon */
.coffee-icon {
    transform: rotate(-15deg);
    transition: transform 0.4s ease;
}

/* Hover Button */
.login-btn:hover {
    background-color: #bb4a39;
    color: #fff;
}

/* Hover Icon Animation */
.login-btn:hover .coffee-icon {
    animation: coffeeShake 0.8s ease-in-out infinite;
}

@keyframes coffeeShake {
    0%   { transform: rotate(-15deg); }
    25%  { transform: rotate(10deg); }
    50%  { transform: rotate(-10deg); }
    75%  { transform: rotate(8deg); }
    100% { transform: rotate(-15deg); }
}

/* ================================
   YELLOW TOP BAR
================================ */
.top-bar {
    width: 100%;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 6px 10px 9px;
    font-size: 14px;
    font-weight: 500;
}

/* ================================
   HEADER HEIGHT FIX
================================ */
.header {
    display: flex;
    flex-direction: column;
}

/* SPACE FIX (IMPORTANT) */
.top {
    margin-top: 110px;
    /* adjust based on header height */
}

/* ================================
   RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

    .top-bar {
        font-size: 12px;
        padding: 5px;
    }

    .top-bar span {
        display: block;
        margin-top: 4px;
    }

    .top {
        margin-top: 95px;
    }

    .nav-menu {
        top: 5rem;
        /* 🔥 adjust for yellow bar */
    }
    .nav-list li{
        text-align: center;
    }
}
@media (max-width: 768px) {

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;   /* 🔥 center horizontally */
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        display: flex;
        justify-content: center; /* 🔥 li bhi center */
    }

    .nav-link {
        justify-content: center !important; /* 🔥 FIX MAIN ISSUE */
        text-align: center;
        width: auto;
    }

    /* BOOK NOW BUTTON CENTER */
    .login {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .login-btn {
        width: 70%;
        text-align: center;
    }
}

.heading-1 h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
  text-align: center;
  margin-block: 1.5rem 1rem;
  text-shadow: 1px 0.5px 1px #ff0404;
}
@media screen and (max-width: 768px) {

  .heading-1 h1 {
    font-size: 1.5rem;
      margin-block:0.5rem;

  }
}
@media screen and (max-width: 570px) {
  .heading-1 h1 {
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 1.2rem;
    }
  }
/* -----------------------------root------- */


:root {
    --nevy: #0c1a24;
    --accent: #e05a44;
    --text-light: #d1d1d1;
    ;
    --style: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
















/* ------------------------------------my-jorney--------------------------------------- */
.banner {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 35rem;
    width: 100%;
    background-color: var(--nevy);
}



.left-photo,
.right-photo {
    width: 50%;
    height: 100%;
}

.left-photo,
.right-photo {
    transition: transform 0.8s cubic-bezier(0.47, 0, 0.745, 0.715), opacity 0.8s cubic-bezier(0.47, 0, 0.745, 0.715);
    /* smooth effect */
}

.left-photo.slide-initial {
    transform: translateX(-140px);
    /* slide in from left */
    opacity: 0;
}

.right-photo.slide-initial {
    transform: translateX(140px);
    /* slide in from right */
    opacity: 0;
}

.left-photo,
.right-photo {
    transform: translateX(0);
    opacity: 1;
}

.left-photo {
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: start;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content h1 {
    font-weight: bold;
    font-size: 2.2rem;
    padding-left: 3rem;
    letter-spacing: 0.03em;
        font-family: Arial, sans-serif;

}

.dot,
.line8 {
    color: rgb(254, 0, 0);
}

.content h2 {
    font-weight: lighter;
    font-size: 1.8rem;
    font-family: Segoe UI;
    margin: 0.2rem 0 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.content h3 {
    font-weight: 600;
    font-size: 2rem;
    font-family: Segoe UI;
    margin: 0 3rem 2rem;
    letter-spacing: 0.03em;

}

/* Button container */
.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

#buttons {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#buttons.show {
    opacity: 1;
}


/* Buttons */
.project-btn {
    background-color: #ff6b53;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1rem;
}

.resume-btn {
    background-color: transparent;
    border: 1.5px solid #ff6b53;
    color: white;
    padding: 0.8rem 1.5rem;
    font-weight: normal;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1rem;
}

.resume-btn a {
    color: white;
}

/* Optional: Hover effects */
.project-btn:hover {
    background-color: #e05a44;
}

.resume-btn:hover {
    background-color: #ff6b53;
    color: white;
}

.right-photo {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.rightside {
    position: absolute;
    width: 480px;
    height: 450px;
    bottom: 0;
}

.round {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    top: 55%;
    left: 47%;
    transform: translate(-50%, -50%);
    /* Main ring color */
    border: 1.4rem solid rgba(255, 80, 50, 0.8);
    box-shadow: 0 0 30px rgba(179, 38, 13, 0.6),
        0 0 600px rgba(255, 80, 50, 0.4),
        0 0 200px rgba(255, 80, 50, 0.2);

    /* Inner radial gradient */
    background: radial-gradient(circle,
            rgba(255, 80, 50, 0.15) 70%,
            transparent 100%);
    z-index: 2;
}

.right-photo img {
    position: absolute;
    width: 18.1rem;
    height: 23rem;
    bottom: -0.2rem;
    left: 6rem;
    z-index: 10;
}
.arrow {
    position: absolute;
    font-size: 7rem;
    z-index: 15;
    font-weight: bold;
    color: rgba(255, 80, 50, 0.6);
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
}

.arrow.left {
    top: 6rem;
    left: -1.2rem;
}

.arrow.right {
    right: -1rem;
    bottom: -3rem;
}

.left-photo,
.right-photo {
    /* Default visible properties */
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Initial state class for slide-in */
.slide-initial.left-photo {
    opacity: 0;
    transform: translateX(-50px);
    /* Slide image 50px left */
}

.slide-initial.right-photo {
    opacity: 0;
    transform: translateX(50px);
    /* Slide image 50px right */
}


@media screen and (max-width: 1024px) {
    .rightside {
        position: absolute;
        width: 450px;
        height: 450px;
        bottom: 0;
    }

    .round {
           position: absolute;
        width: 330px;
        height: 340px;
        border-radius: 50%;
        top: 56%;
        left: 44%;
    }


    .right-photo img {
        position: absolute;
        width: 17rem;
        height: 22rem;
        bottom: -0.2rem;
        left: 5rem;
        z-index: 10;
    }


    .arrow {
        position: absolute;
        font-size: 7rem;
        z-index: 15;
        font-weight: bold;
        color: rgba(255, 80, 50, 0.6);
        transform: translateY(-50%);
        font-family: Arial, sans-serif;
    }

    .arrow.left {
        top: 6rem;
        left: -2rem;
    }

    .arrow.right {
        right: -0.5rem;
        bottom: -2rem;
    }

}

@media screen and (max-width: 768px) {
    .banner {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
        height: auto;
    }


    .left-photo {
        justify-content: center;
        margin-top: 7.5rem;
    }

    .content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .content h1 {
        font-size: 1.8rem;
        padding-left: 0rem;
        text-align: center;
    }

    .content h2 {
        font-size: 1.5rem;
        margin: 0.2rem 0 1rem;
        font-weight: 600;
        text-align: center;
    }

    .content h3 {
        font-size: 1.7rem;
        margin: 0 1rem 1rem;

    }

    .project-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .resume-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .left-photo,
    .right-photo {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        position: relative;
    }

    .rightside {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto;
        border: none;
    }

    .round {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        left: 50%;
        top: 1rem;
        transform: translateX(-50%);    
    }

    /* Position image at the bottom of the .rightside (relative container) */
    .right-photo img {
           position: absolute;
        width: 16rem;
        height: 20rem;
        left: 54%;
        bottom: -1.2rem;
        transform: translateX(-50%);
        z-index: 10;

    }

    .arrow {
        position: absolute;
        font-size: 7rem;
        z-index: 15;
        font-weight: bold;
        color: rgba(255, 80, 50, 0.6);
        transform: translateY(-50%);
        font-family: Arial, sans-serif;
    }

    .arrow.left {
        top: 6rem;
        left: -2.5rem;
    }

    .arrow.right {
        right: -3rem;
        bottom: -2rem;
    }

}

@media screen and (max-width: 530px) {
    .banner {
        gap: 0rem;

    }

    .left-photo {
        height: 12rem;
    }

    .right-photo {
        height: 22rem;
    }

    .content {
        gap: 0.9rem;
        justify-content: center;
        align-items: center;
    }

    .content h1 {
        font-size: 1.3rem;
        padding-left: 0rem;
        text-align: center;
        font-weight: 500;

    }

    .content h2 {
        font-size: 1.3rem;
        margin: 0;
        font-weight: 500;
        text-align: center;
    }

    .content h3 {
        font-size: 1.3rem;
        margin: 0 1rem 1rem;
        font-weight: 500;


    }

    .project-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .resume-btn a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }


    .rightside {
        max-width: 350px;
        height: 350px;

    }

    .round {
        width: 280px;
        height: 280px;
            border: 1.1rem solid rgba(255, 80, 50, 0.8);
        left: 50%;
        top: 3rem;
        transform: translateX(-50%);
    }

    /* Position image at the bottom of the .rightside (relative container) */
    .right-photo img {
            position: absolute;
        width: 14rem;
        height: 18rem;
        left: 53%;
        bottom: -1.2rem;
        transform: translateX(-50%);
        z-index: 10;
    }

    .arrow {
        position: absolute;
        font-size: 5rem;
        z-index: 15;
        font-weight: bold;
        color: rgba(255, 80, 50, 0.6);
        transform: translateY(-50%);
        font-family: Arial, sans-serif;
    }

    .arrow.left {
        top: 5rem;
        left: -0.8rem;
    }

    .arrow.right {
        right: -1.2rem;
        bottom: -3rem;
    }

}

/* =-------------------------languaage ------------- */
.lang {
    background-color: #192032;
    /* width: 100%; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 1rem;
    flex-wrap: wrap;

}

.lang h1 {
    color: #c1c8d6;
    font-size: 1rem;
    font-weight: 500;
    font-family: Segoe UI;
    padding-inline: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;

}

@media screen and (max-width:768px) {
    .lang {
        padding: 0.5rem;
    }

    .lang h1 {
        font-size: 0.9rem;
        padding-block: 0.5rem;
    }

}

/* ----------------------about-me------------ */

.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 2rem 1rem;
    color: var(--text-light);
    gap: 2rem;
}

.services {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.line {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.line-1 {
    color: red;
    width: 2px;
    height: 3rem;
    background-color: red;
}

.cr {
    width: 0.5rem;
    height: 0.5rem;
    background-color: red;
    border-radius: 50%;
}

.line-right {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.line-right h3 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

.service-item img {
    width: 40px;
    height: 40px;
}

.number {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}

/* Right - About Content */
.about-content {
    flex: 2 1 300px;
}

.about-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

.about-content p {
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #d1d1d1;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

/* Stats Styling */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.stat {
    text-align: left;
}

.stat .number {
    font-size: 2rem;
    font-weight: bold;
}

.plus {
    color: var(--accent);
}

.percent {
    color: var(--accent);
}

.about-section .services,
.about-section .about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

/* When section is visible, animate in */
.about-section.visible .services {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.about-section.visible .about-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
    /* delay, so it shows after services */
}


@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .services {
        align-items: center;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .service-item {
        flex-direction: column;
    }

    .services {
        gap: 0.5rem;
    }

    .line {
        gap: 0.2rem;
    }

    .line-1 {
        width: 2px;
        height: 2rem;
    }

    .cr {
        width: 0.5rem;
        height: 0.5rem;
    }

    .line-right {
        display: flex;
        gap: 0.8rem;
    }

    .service-item {
        gap: 0rem;
    }

    .line-right h3 {
        font-size: 1.1rem;
    }

    .service-item img {
        width: 40px;
        height: 40px;
    }

    .number {
        font-weight: 500;
    }

    .about-content {
        margin-block: 1.5rem 1rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1rem;

    }

    .stats {
        gap: 4rem;
    }

    .stat .number {
        font-size: 2rem;
    }

    .plus {
        color: var(--accent);
    }

    .percent {
        color: var(--accent);
    }

}

@media (max-width: 530px) {
    .about-content h2 {
        font-size: 1.6rem;
    }

    .number {
        font-size: 1.5rem;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem 1rem;
    }

    .service-item {
        flex-direction: column;
    }

    .services {
        gap: 0.5rem;
    }

    .line {
        gap: 0.2rem;
    }

    .line-1 {
        width: 2px;
        height: 2rem;
    }

    .line-right h3 {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-light);
    }

    .service-item img {
        width: 2.4remp;
        height: 2.8rem;
    }


    .about-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: white;

    }

    .about-content p {
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        margin-top: 0.3rem;
        padding-inline: 0rem;

    }

    .stats {
        gap: 2rem;
    }

    .stat .number {
        font-size: 1.2rem;
    }

    .plus {
        color: var(--accent);
    }

    .percent {
        color: var(--accent);
    }
}

/* -----------------------services------------------------ */
.service-section {
    margin-inline: 1rem;
}

.service-container {
    margin: 0 auto 1rem;
    border: 2.5px solid var(--accent);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    max-width: 1350px;
    position: relative;
}

.heading {
    text-align: center;
    position: absolute;
}

.heading h1 {
    background-color: var(--accent);
    color: white;
    padding: 0.3rem 1.5rem 0.6rem;
    font-size: 1.3rem;
    top: 0;
    font-weight: 500;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 0 0 15px 15px;
    /* Optional: rounded bottom like your image */
}

.service-div {
    margin-top: 5rem;
    padding: 1rem 3rem 1rem;

}

.service1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8rem;
    row-gap: 2rem;
}


.service-l img {
    width: 26rem;
    height: 20rem;

}

.service-r {
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 1.5rem 1rem 0.8rem;
    color: #fff;
    flex: 1;
    max-width: 31rem;
    border: 2px solid rgb(51, 50, 50);
}

.service-r h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-r p {
    color: #bbb;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1.5rem;
}

.service-l img,
.service-r {
    opacity: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: none;
}

.im2 img {
    width: 30rem;
}

/* Slide up for .service-l img */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flip in for .service-r */
@keyframes flipIn {
    0% {
        opacity: 0;
        transform: rotateY(90deg);
    }

    100% {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Classes to trigger animations */
.animate-slideUp {
    animation: slideUp 1s forwards;
}

.animate-flipIn {
    animation: flipIn 1s forwards;
}

.service-r ul {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.service-r ul li {
    margin-bottom: 0.5rem;
    color: gold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.service-r ul i {
    font-size: 0.3rem;
}

.btn-wrapper {
    text-align: center;
    /* Center horizontally */
}

.pricing-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 0.4rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--style);
}

.pricing-btn i {
    font-size: 0.9rem;
    margin-inline: 0.5rem;
}

.pricing-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .service-container {
        border: 2px solid var(--accent);
        border-radius: 8px;
    }

    .heading h1 {
        padding: 0.3rem 1.5rem 0.6rem;
        font-size: 1.2rem;
    }

    .service-div {
        margin-top: 4rem;
        padding: 1rem 2rem 1rem;

    }

    .service1 {
        column-gap: 2rem;
        row-gap: 1rem;
    }

    .s1,
    .s3 {
        flex-direction: column-reverse;
    }

    .s2 {
        flex-direction: column;
    }

    .service-l img {
        width: 26rem;
        height: 20rem;

    }

    .service-r {
        border-radius: 20px;
        padding: 1.5rem 1rem 0.8rem;
        max-width: 31rem;
        border: 2px solid rgb(51, 50, 50);
    }

    .service-r h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-r p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-r ul {
        margin-top: 1rem;
    }

    .service-r ul li {
        margin-bottom: 0.5rem;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .service-r ul i {
        font-size: 0.3rem;
    }

    .pricing-btn {
        margin-top: 1rem;
        padding: 0.6rem 0.4rem;
        border: 1px solid #fff;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .pricing-btn i {
        font-size: 0.9rem;
        margin-inline: 0.5rem;
    }

}

@media (max-width: 530px) {
    .service-section {
        margin-inline: 0rem;
    }

    .service-container {
        margin: 0 0 1rem;
        border: 2px solid var(--accent);
        border-radius: 10px;
        padding-inline: 0.5rem;
    }

    .heading h1 {
        padding: 0.2rem 1.1rem 0.3rem;
        font-size: 1.3rem;
        border-radius: 0 0 15px 15px;
    }

    .service-div {
        margin-top: 4rem;
        padding: 0.5rem;

    }

    .service1 {
        column-gap: 0rem;
        row-gap: 1rem;
    }

    .im1 img {
        width: 23rem;
        height: 15rem;
    }

    .im2 img {
        width: 23rem;
        height: 15rem;
    }

    .im3 img {
        width: 19rem;
        height: 15rem;
    }


    .service-r {
        border-radius: 10px;
        margin-inline: 0.5rem;
        padding: 1rem 0.5rem 0.5rem;
        width: 100%;
        border: 2px solid rgb(51, 50, 50);
    }

    .service-r h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .service-r p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-r ul {
        margin-top: 0.5rem;
    }

    .service-r ul li {
        margin-bottom: 0.5rem;
        gap: 0.7rem;
        font-size: 0.8rem;
    }

    .service-r ul i {
        font-size: 0.3rem;
    }

    .pricing-btn {
        margin-top: 1rem;
        padding: 0.5rem 0.4rem;
        border: 1px solid #fff;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .pricing-btn i {
        font-size: 0.8rem;
        margin-inline: 0.5rem;
    }

}

/* ---------------we work-------- */
.work-section {
    margin: 3rem 1rem 1rem;
}

.card-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem;
}


.how-we-work h2 {
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.how-we-work p {
    color: #bbb;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 1rem;
    max-width: 640px;
    font-family: var(--style);
}


.process-card {
    position: relative;
    border: 2px solid rgb(51, 50, 50);
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    color: #fff;
    flex: 1 1 260px;
    padding: 2rem 1rem 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.process-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.6, 0, 0.4, 1), transform 0.6s cubic-bezier(0.6, 0, 0.4, 1);
}

.process-card.show {
    opacity: 1;
    transform: translateY(0);
}

.how-we-work {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.how-we-work.show {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    position: absolute;
    font-size: 6.5rem;
    font-weight: 500;
    color: #ffffff37;
    top: 28%;
    font-family: var(--style);
    left: 45%;
}

.process-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.process-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}

.process-card p {
    font-weight: 400;
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.5;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

@media (max-width: 768px) {
    .work-section {
        margin: 2.5rem 0.5rem 1rem;
    }

    .card-item {
        gap: 1rem;
        padding: 0.5rem;
    }


    .how-we-work h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .how-we-work p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 auto 1rem;
        max-width: 640px;
    }


    .process-card {
        border-radius: 1.2rem;
        flex: 1 1 260px;
        padding: 2rem 1.2rem 3rem;
    }

    .process-number {
        font-size: 6rem;
        top: 28%;
        left: 45%;
    }

    .process-card .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .process-card h3 {
        font-size: 1.3rem;
    }

}

@media (max-width: 530px) {
    .card-item {
        gap: 1rem;
        padding: 0rem;
    }


    .how-we-work h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .how-we-work p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0 auto 1rem;
        max-width: 640px;
    }


    .process-card {
        border-radius: 1rem;
        flex: 1 1 260px;
        padding: 1.5rem 0.5rem 2rem;
    }

    .process-number {
        font-size: 6rem;
        top: 22%;
        left: 42%;
    }

    .process-card .icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .process-card h3 {
        font-size: 1.28rem;
        font-weight: 500;
        font-family: var(--style);

    }

    .process-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

}

/* ----------------why choose us------------------ */
.why-work {
    text-align: center;
    margin: 3.5rem 0 3.5rem;
}

.why-work h1 {
    letter-spacing: 0.02em;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.why-work p {
    color: #bbb;
    font-family: var(--style, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 1rem;
    max-width: 640px;
}

/* Desktop: Circular Features */
.why-choose-desktop-circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-circle-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent, gold);
    z-index: 1;
    opacity: 0.5;
}

.why-choose-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.why-feature {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border: none;
    border-radius: 50%;
    border: 2px solid rgb(51, 50, 50);
    color: white;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 18px #0e184144;
    transition: background 0.18s, box-shadow 0.2s, transform 0.19s;
    opacity: 0.97;
}

.why-feature.active,
.why-feature:hover {
    transform: scale(1.05);
    z-index: 9;
    color: gold;
}

.why-choose-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border: 2px solid rgb(51, 50, 50);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
    transition: box-shadow 0.28s;
    padding: 15px;
    pointer-events: none;
}

.why-choose-center h2 {
    font-size: 1.20rem;
    margin-bottom: 11px;
    font-family: var(--style, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    font-weight: 500;
    color: gold;
}

.why-choose-center p {
    color: #bbb;
    line-height: 1.55;
    font-size: 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Entrance Animation for Section */
.why-choose-us-section {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.3, 0.7, 0.52, 1), transform 0.7s cubic-bezier(0.3, 0.7, 0.52, 1);
    will-change: opacity, transform;
}

.why-choose-us-section.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* MOBILE VIEW - Stacked Card Features, Hide Circle */
.why-choose-features-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.why-feature-mobile {
    display: flex;
    align-items: center;
    border: 2px solid rgb(51, 50, 50);
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border-radius: 14px;
    border: 1.5px solid #232326;
    color: white;
    padding: 18px 15px;
    opacity: 0.98;
    margin-inline: 0.5rem;
}

.why-feature-mobile i {
    font-size: 2rem;
    color: #ffe169;
    margin-right: 16px;
    flex-shrink: 0;
}

.why-title {
    font-size: 1.12rem;
    color: #ffe169;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin-bottom: 4px;
}

.why-desc {
    color: #bbb;
    font-size: 0.9rem;
    font-family: var(--style, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    line-height: 1.58;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-feature-mobile {
    opacity: 0;
    /* Initially hidden */
    animation-fill-mode: forwards;
}

.why-feature-mobile.animated {
    animation-name: fadeSlideUp;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

/* Responsive: Show Cards, Hide Circle on Mobile */
@media (max-width: 768px) {
    .why-work {
        margin: 3rem 0 3rem;
    }

    .why-work h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .why-work p {
        font-size: 1rem;
        margin: 0 auto 1rem;
        padding-inline: 0.5rem;
        text-align: center;
        max-width: 470px;
    }

    .why-choose-circle-outline {
        border: 2px solid var(--accent, gold);
    }

    .why-choose-center h2 {
        font-size: 1.20rem;
        margin-bottom: 11px;
        font-weight: 500;
    }

    .why-choose-center p {
        line-height: 1.5;
        font-size: 0.9rem;
    }
}

@media (max-width: 530px) {
    .why-choose-desktop-circle {
        display: none;
    }

    .why-choose-features-mobile {
        display: flex;
    }

    .why-work {
        margin: 2.5rem 0 1.5rem;
    }

    .why-work h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .why-work p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0 auto 1rem;
        max-width: 640px;
    }
}

/* <!-- ---------------------photos----------------------------- --> */

.portfolio-section {
    max-width: 1100px;
    margin: 3rem auto 1rem;
    padding: 24px 8px;

}

/* Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 32px;
}

.portfolio-section.hidden-left {
    transition: all 0.8s ease;
}

.tab-btn {
    border: 1px solid var(--accent);
    font-weight: 500;
    padding: 10px 1.2rem;
    border-radius: 32px;
    cursor: pointer;
    font-size: 1.14rem;
    background: transparent;
    color: #fff;
    font-family: var(--style);
    font-weight: 400;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent);
    color: white;
}

/* Info Section */
.tab-info {
    text-align: center;
    margin-bottom: 2rem;
}

.tab-heading {
    text-align: center;
    font-size: 1.5rem;
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.tab-desc {
    font-size: 1.1rem;
    color: #e4e4e4;
    text-align: center;
    font-family: var(--style);
}

.view-more {
    color: #4ed9f4;
    margin-left: 6px;
    text-decoration: underline;
    transition: color 0.2s;
}

.view-more i {
    font-size: 1rem;
    margin-left: 0.5rem;
}

.view-more:hover {
    color: #fff;
}

.slider-group {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.slider-group.active {
    display: flex;
    /* show active */
}

.slider-img {
    height: 380px;
    width: 200px;
    object-fit: contain;
    border-radius: 5px;
}

.img1,
.img2,
.img3 {
    height: 450px;
    width: 270px;
}

.slider-img-big {
    height: 27rem;
    width: 42rem;
}

.hidden-left {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 1s ease-out;
}

/* Visible state */
.show-left {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .portfolio-section {
        max-width: 700px;
        margin: 2.5rem auto 24rem;
        padding: 20px 8px;
    }

    /* Tabs */
    .portfolio-tabs {
        gap: 1rem;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 8px 1rem;
        border-radius: 30px;
        font-size: 1rem;
    }

    .tab-heading {
        font-size: 1.3rem;
    }

    .tab-desc {
        font-size: 0.9rem;
    }

    .view-more {
        font-size: 0.9rem;
    }

    .view-more i {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .slider-group {
        gap: 25px;
        position: relative;
    }

    .slider-img {
        position: absolute;

    }

    .img1 {
        top: 0rem;
        height: 22rem;
        width: 18rem;
        z-index: 6;
        right: 4rem;
        transition: all 0.3s ease;
    }

    .img2 {
        height: 22rem;
        width: 18rem;
        top: 0rem;
        z-index: 5;
        right: 12rem;
        transition: all 0.3s ease;

    }

    .img3 {
        height: 22rem;
        width: 18rem;
        top: 0rem;
        z-index: 4;
        left: 3rem;
        transition: all 0.3s ease;
    }

    .img4 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        left: 5rem;
        transition: all 0.3s ease;
    }

    .img5 {
        height: 22rem;
        width: 12rem;
        top: 0rem;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .img6 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        right: 5rem;
        transition: all 0.3s ease;
    }

    .slider-img-big {
        position: absolute;
        top: 0rem;
        height: 20rem;
        width: 32rem;
        margin-inline: auto;
    }
}

@media (max-width: 530px) {
    .portfolio-section {
        max-width: 530px;
        padding: 1rem 8px;
    }

    /* Tabs */
    .portfolio-tabs {
        gap: 0.3rem;
        margin-bottom: 1.5rem;
        justify-content: space-around;
    }

    .tab-btn {
        padding: 8px 9px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    .tab-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .tab-desc {
        font-size: 0.9rem;
        max-width: 22rem;
        margin-inline: auto;
        line-height: 1.5rem;
    }

    .view-more {
        font-size: 0.9rem;
    }

    .view-more i {
        font-size: 0.8rem;
        margin-left: 0.3rem;
    }

    .slider-group {
        position: relative;
    }

    .slider-img {
        position: absolute;

    }

    .img1 {
        top: 0rem;
        height: 21rem;
        width: 14rem;
        z-index: 6;
        right: 1rem;
        transition: all 0.3s ease;
    }

    .img2 {
        height: 21rem;
        width: 14rem;
        top: 0rem;
        z-index: 5;
        right: 7rem;
        transition: all 0.3s ease;

    }

    .img3 {
        height: 21rem;
        width: 14rem;
        top: 0rem;
        z-index: 4;
        left: 1rem;
        transition: all 0.3s ease;
    }

    .img4 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        left: -1rem;
        transition: all 0.3s ease;
    }

    .img5 {
        height: 22rem;
        width: 12rem;
        top: 0rem;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .img6 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        right: -1rem;
        transition: all 0.3s ease;
    }

    .slider-img-big {
        height: 18rem;
        width: 25rem;
    }
}

/*     <!-- ---------------------------------get-quete-------------------- --> */
.quote-section {
    padding: 1rem;
    text-align: center;
    animation: queate 0.5s ease;
}

.quote-section.show {
    display: block;
    animation: fadeSlide 0.8s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-heading h2 {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--style);
    color: #fff;
    margin-bottom: 10px;
}

.quote-heading p {
    font-size: 1.1rem;
    color: #ddd;
    font-family: var(--style);
    margin-bottom: 2rem;
    text-align: center;
}
html {
    scroll-behavior: smooth;
}
.quote-form {
    background: linear-gradient(145deg, #111, #1a1a1a);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    border: 2px solid rgb(51, 50, 50);
    max-width: 550px;
    margin: 0rem auto;


}

.form-group {
    text-align: left;
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-family: var(--style);
    font-weight: 400;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgb(51, 50, 50);
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.submit-btn {
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 28px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.submit-btn:hover {
    background: #ec6e5a;
    color: #fff;
    transform: translateY(-1px);
}

.hidden {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}

/* When visible */
.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 530px) {
    .quote-section {
        padding: 0.5rem;
    }

    .quote-heading h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 2rem;
    }

    .quote-heading p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .quote-form {
        border-radius: 12px;
        padding: 2rem 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 8px 10px;
        border-radius: 5px;
        background: #000;
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 8px 32px;
        border-radius: 20px;
        margin-top: 0.5rem;
    }
}

/* -----------------------footer-section--------------- */
.footer {
    background: #000;
    color: var(--gold);
    padding: 3rem 2rem 1rem;
    font-family: var(--style);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-about .logo1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-about .logo1 img {
    width: 3.8rem;
    height: 3.3rem;
}

.logo1 h1 {
    font-size: 1.4rem;
    color: var(--gold);
    font-family: var(--style);
    font-weight: 500;
}

.footer-about .about-text {
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--style);
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}


.footer-links ul li,
.footer-products ul li {
    margin: 6px 0;
}

.footer-links a,
.footer-products a {
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--style);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
}

.footer-contact .social-icons {
    display: flex;
    gap: 0.6rem;
}

.footer-contact p span {
    margin-left: 1rem;
}

.footer-contact .social-icons a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.footer-contact a {
    color: #fff;
    line-height: 0.5;
    font-size: 0.9rem;
    font-family: var(--style);
    display: block;
    margin-block: 0.8rem;
}

.footer-contact .social-icons i:hover {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 6px 0;
    color: #fff;
    line-height: 1.5;
    text-align: start;

}
#services {
  scroll-margin-top: 90px;
}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom .policy-links {
    margin-bottom: 8px;
}

.footer-bottom .policy-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom .policy-links a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom a {
    color: #fbbf24;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 530px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }


    .footer-about .logo1 {
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .footer-about .logo1 img {
        width: 4rem;
        height: 3.1rem;
    }

    .logo1 h1 {
        font-size: 1.18rem;
    }

    .footer-about .about-text {
        font-size: 0.8rem;
        line-height: 1.58;
    }

    .footer-contact p span {
        margin-left: 0rem;
    }


    .footer-links h3,
    .footer-products h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }


    .footer-links ul li,
    .footer-products ul li {
        margin: 6px 0;
        padding: 5px 0;
    }

    .footer-links a,
    .footer-products a {
        font-size: 0.9rem;
    }

    .footer-contact .social-icons {
        gap: 0.6rem;
        margin-bottom: 15px;
    }

    .footer-contact .social-icons a {
        font-size: 1.2rem;
    }

    .footer-contact a {
        font-size: 0.9rem;
        margin-block: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin: 9px 0;
        line-height: 1.5;
        text-align: center;

    }

    .footer-contact i {
        margin-right: 8px;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .footer-bottom .policy-links {
        margin-bottom: 8px;
    }

    .footer-bottom .policy-links a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .footer-bottom span {
        font-weight: 500;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact .social-icons {
        justify-content: center;
    }
}