body {
    background: #0d0d0d;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.primary-gradient {
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
}

body {
    background: #0d0d0d;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.primary-gradient {
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
}

.custom-header {
    padding: 20px 40px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #ff7a00;
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
}

.nav-link {
    color: #aaa !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ff7a00 !important;
}

.hero {
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
    background: #111;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: #ff7a00;
}

.footer-title {
    color: #ff7a00;
    margin-bottom: 15px;
}

.btn-glow {
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
    border: none;
    color: white;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.8);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #ff7a00;
    transition: 0.3s;
}

#navMenu {
    display: flex;
    gap: 20px;
    z-index: 100;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    #navMenu {
        position: absolute;
        top: 80px;
        right: 20px;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        display: none;
        box-shadow: 0 0 20px rgba(255, 122, 0, 0.2);
        z-index: 100;
    }

    #navMenu.active {
        display: flex;
        z-index: 100;
    }
}

.hero {
    position: relative;
    height: 90vh;
    background: url('../images/bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.9));
    z-index: 9;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #bbb;
    font-size: 18px;
}

.services-section {
    background: #0d0d0d;
}

.services-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-box {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.3s;
    cursor: pointer;
}

.service-box i {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-box h5 {
    color: #ddd;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.service-box:hover i {
    color: #ff3c00;
    transform: scale(1.2);
}

.why-section {
    background: #111;
}

.why-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-text {
    color: #bbb;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    color: #ddd;
    margin-bottom: 8px;
}

.why-img-wrapper {
    position: relative;
    display: inline-block;
}

.why-img {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.15);
    transition: 0.4s;
}

.why-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.3);
}

@media (max-width: 768px) {

    .why-title,
    .why-text {
        text-align: center;
    }

    .why-list {
        text-align: center;
    }
}

.reviews-section {
    background: #0d0d0d;
}

.reviews-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    height: 100%;
    transition: 0.3s;
}

.review-box p {
    color: #bbb;
    font-size: 15px;
}

.review-box h6 {
    color: #888;
    margin-top: 10px;
}

.stars {
    color: #ff7a00;
    margin-top: 10px;
    letter-spacing: 2px;
}

.review-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.reviews-section {
    background: #0d0d0d;
}

.reviews-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.review-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 122, 0, 0.1));
    opacity: 0;
    transition: 0.3s;
}

.review-box:hover::before {
    opacity: 1;
}

.review-box p {
    color: #bbb;
    font-size: 15px;
}

.review-box h6 {
    color: #888;
    margin-top: 10px;
}

.stars {
    color: #ff7a00;
    margin-top: 10px;
    letter-spacing: 2px;
}

.review-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.contact-section {
    background: #111;
}

.contact-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.story-section {
    background: #0d0d0d;
}

.story-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text {
    color: #bbb;
    line-height: 1.7;
}

.story-img {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.2);
    transition: 0.4s;
}

.story-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.4);
}

.timeline-section {
    background: #111;
}

.timeline-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s;
}

.timel .custom-header {
    padding: 20px 40px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
a {
  text-decoration: none;
}
.logo {
    font-size: 28px;
    font-weight: 600;
    color: #ff7a00;
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
    text-decoration: none;
}
a .logo{
    text-decoration: none;
}
.nav-link {
    color: #aaa !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ff7a00 !important;
}

.hero {
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
    background: #111;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: #ff7a00;
}

.footer-title {
    color: #ff7a00;
    margin-bottom: 15px;
}

.btn-glow {
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
    border: none;
    color: white;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.8);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #ff7a00;
    transition: 0.3s;
}

#navMenu {
    display: flex;
    gap: 20px;
    z-index: 100;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    #navMenu {
        position: absolute;
        top: 80px;
        right: 20px;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        display: none;
        box-shadow: 0 0 20px rgba(255, 122, 0, 0.2);
        z-index: 100;
    }

    #navMenu.active {
        display: flex;
        z-index: 100;
    }
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.9));
    z-index: 9;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #bbb;
    font-size: 18px;
}

.services-section {
    background: #0d0d0d;
}

.services-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-box {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.3s;
    cursor: pointer;
}

.service-box i {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-box h5 {
    color: #ddd;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.service-box:hover i {
    color: #ff3c00;
    transform: scale(1.2);
}

.why-section {
    background: #111;
}

.why-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-text {
    color: #bbb;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    color: #ddd;
    margin-bottom: 8px;
}

.why-img-wrapper {
    position: relative;
    display: inline-block;
}

.why-img {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.15);
    transition: 0.4s;
}

.why-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.3);
}

@media (max-width: 768px) {

    .why-title,
    .why-text {
        text-align: center;
    }

    .why-list {
        text-align: center;
    }
}

.reviews-section {
    background: #0d0d0d;
}

.reviews-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    height: 100%;
    transition: 0.3s;
}

.review-box p {
    color: #bbb;
    font-size: 15px;
}

.review-box h6 {
    color: #888;
    margin-top: 10px;
}

.stars {
    color: #ff7a00;
    margin-top: 10px;
    letter-spacing: 2px;
}

.review-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.reviews-section {
    background: #0d0d0d;
}

.reviews-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.review-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 122, 0, 0.1));
    opacity: 0;
    transition: 0.3s;
}

.review-box:hover::before {
    opacity: 1;
}

.review-box p {
    color: #bbb;
    font-size: 15px;
}

.review-box h6 {
    color: #888;
    margin-top: 10px;
}

.stars {
    color: #ff7a00;
    margin-top: 10px;
    letter-spacing: 2px;
}

.review-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.contact-section {
    background: #111;
}

.contact-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.story-section {
    background: #0d0d0d;
}

.story-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text {
    color: #bbb;
    line-height: 1.7;
}

.story-img {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.2);
    transition: 0.4s;
}

.story-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.4);
}

.timeline-section {
    background: #111;
}

.timeline-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s;
}

.timeline-box h3 {
    color: #ff7a00;
    margin-bottom: 10px;
}

.timeline-box p {
    color: #bbb;
    font-size: 14px;
}

.timeline-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.2);
}

@media (max-width: 768px) {

    .story-title,
    .story-text {
        text-align: center;
    }
}

.faq-section {
    background: #0d0d0d;
}

.faq-title {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 15px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 122, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.3s ease;
}

.faq-answer p {
    padding: 15px;
    color: #bbb;
}

.faq-img {
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.2);
    transition: 0.4s;
}

.faq-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255, 122, 0, 0.4);
}

@media (max-width: 768px) {
    .faq-title {
        text-align: center;
    }
}

.stats-section {
    background: #111;
}

.stats-title {
    font-size: 36px;
    background: linear-gradient(90deg, #ff7a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.3s;
}

.stat-box i {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 28px;
    color: #fff;
    margin: 10px 0;
}

.stat-box p {
    color: #bbb;
    font-size: 14px;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}
.custom-header {
  position: relative;
  z-index: 1000;
}
.burger {
  position: relative;
  z-index: 1100;
}