@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

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

:root {
    --primary-text-color: #FFFFFF;
    --secondary-text-color: #9B96B0;
    --padding-inline-section: 15px;
}

body {
    font-family: 'poppins', sans-serif;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8rem;
    line-height: 1.8rem;
    color: var(--secondary-text-color);
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-text-color);
    display: inline-block;

}

ul {
    list-style: none;
}

/* utility */

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    max-width: 1280px;
    margin-inline: auto;
    padding: var(--padding-inline-section);
}

/* Header */



/* Header */

.header {
    width: 100%;
    background-color: black;
    position: sticky;
    top: 0;
    left: 0;
    border-bottom: white 1px;
    /* opacity: 0.9; */
    z-index: 1000;
}

.logo {
    width: 3rem;
    border-radius: 50%;
}

.dropdown {
    display: none;
}

.nav {
    margin-right: 28px;
}

.nav-links {
    gap: 28px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-links .active {
    color: #d66c2a;
}

.get-started {
    font-size: 14px;
    /* /* background: linear-gradient(to right, rgb(255, 0, 221),rgb(187, 74, 187)); */
    background: linear-gradient(to right, #aa6642, #834d2b);
    padding: 8px 28px;
    border-radius: 23px;
    transition: all 0.2s;
}

.get-started:hover {
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
       */
    background: linear-gradient(90deg, #C87C50, #A8653E);
}

.get-started:active {
    background: linear-gradient(90deg, #A8653E, #8B4D31);
    /* Even darker gradient for active state */
    transform: scale(0.95);
}

.hamburger {
    display: none;
}

@media only screen and (max-width:909px) {

    .header {
        background-color: #A8653E;
    }

    .nav {
        position: absolute;
        left: 0;
        top: 100%;
        flex-direction: column;
        width: 100%;
        transform: translate(-100%);
        transition: all 0.2s;

    }

    .active {
        transform: translatex(0);
    }

    .nav-links {
        flex-direction: column;
        background-color: black;
        width: 100%;
        padding-block: 20px;

    }



    .hamburger {
        display: block;
        color: var(--primary-text-color);
        font-size: 28px;
        margin-right: 18px;
    }

    .get-started {
        display: none;
    }
}

/* About Section */
.about-section {
    background-color: #000;
    /* Black background */
    color: white;
    font-family: Arial, sans-serif;
    min-height: 90vh;
    display: flex;


}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

/* About Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

/* Left Content */
.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h4 {
    text-transform: uppercase;
    font-size: 20px;
    color: #d66c2a;
}

.about-content h2 {
    font-size: 3.8rem;
    font-weight: bold;
    margin-top: 25px;
}

.about-content p {
    font-size: 16px;
    color: #ccc;
    margin: 15px 0;
}
#aboutbtn {
    background: linear-gradient(#A8653E, #301508);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
   
}




/* Right Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 90%;
    border-radius: 10px;

}

/* Responsive */
@media (max-width: 996px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-top: 20px;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }
}



/* who we are */

/* Main Section Styling */
.who-we-are-section {
    /* padding: 80px 10%; */
    background-color: #000;
    color: white;
    padding-bottom: 5rem;
}


/* Wrapper Div */
.who-we-are-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Image */
.who-we-are-image {
    flex: 1;
    display: flex;


}

.who-we-are-image img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(255, 255, 255, 0.2);

}

/* Right Content */
.who-we-are-content {
    flex: 1;
    max-width: 500px;
}

.who-we-are-content h2 {
    font-size: 36px;
    font-weight: bold;
}

.who-we-are-content p {
    font-size: 16px;
    color: #ccc;
    margin: 15px 0;
}

.who-we-are-btn {
    background: white;
    color: black;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.who-we-are-btn:hover {
    background: gray;
    color: white;

}

/* Responsive */
@media (max-width: 996px) {
    .who-we-are-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .who-we-are-image {
        margin-top: 20px;
        justify-content: center;
    }


}



/* our process */

.process-section {
    /* padding: 80px 10%; */
    background-color: #ffffff;
    color: #333;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

/* Section Title */
.section-title {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #7a7a7a;
    margin-bottom: 40px;
}

.pro-container {
    max-width: 70%;
    margin-inline: auto;

}

/* Process Wrapper */
.process-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;




}

/* Step Div */
.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;


}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #b44f10, #d66c2a);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.step-icon img {
    width: 30px;
    height: 30px;
}

/* Step Content */
.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 400;
}

.step-content p {
    color: #777;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-icon {
        margin-bottom: 10px;
    }
}




/* Section Styling */
.values-section {
    background-color: #0b0b0d;
    color: white;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Grid Layout */
.values-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Value Cards */
.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.value-card:hover {
    transform: translateY(-10px);
}

/* Value Icons */
.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #b44f10, #d66c2a);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.value-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Text */
.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-card p {
    color: #b3b3b3;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        align-items: center;
    }
}


.footer {
    background-color: black;
    color: #4b5563;
    padding: 40px 0;
}

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.brand {
    width: 20%;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    text-align: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;

}


.brand-name {
    font-size: 25px;
    font-weight: bold;
    display: block;
    color: var(--primary-text-color);
    margin-top: 5px;
}

.brand-description {
    font-size: 14px;
    color: var(--secondary-text-color);
}

.footer-links {
    display: flex;
    width: 75%;
    justify-content: space-between;
}

.column {
    width: 22%;
}

.column h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-text-color);
    margin-bottom: 10px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 8px;
}

.column ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: color 0.3s;
}



.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: white;
}

.footer-bottom a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}



.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}



/* media query for footers */

@media screen and (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Logo और description को center करने के लिए */
        margin-bottom: 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        /* Logo और Text दोनों को center करने के लिए */
        gap: 10px;
    }

    .brand-name {
        margin-top: 0;
        /* Extra space remove करने के लिए */
        font-size: 20px;
    }

    .brand-description {
        max-width: 80%;
        /* Text width को adjust करने के लिए */
        text-align: center;
        /* Center alignment */
        margin-top: 8px;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .column {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
}