:root {
    --font-primary: 'Roboto Condensed', sans-serif;
    --color-primary: #FBD343;
    --color-secondary: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body{
    background-color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: center;
    color:var(--color-primary);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
} */

.nav-links a:hover {
    color: var(--color-primary);
}

/* .dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--color-secondary);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    color: var(--color-primary);
} */


.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 28px;
    line-height: 1;
}

.btn-pro {
    background-color:var(--color-secondary);
    color: white;
    border: none;
}

.btn-quote {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
}

.btn:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* About Us  */

.page-header {
    position: relative;
    height: 400px;
    width: 100%;
    background-image: url('../assets/images/Hero.jpg'); /* You can add your image later */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 80px; /* To account for fixed header */
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    color: var(--color-primary);
}

.breadcrumb .current-page {
    color: #fff;
}

/* About us header Ends  */

/* About Us Section Content */

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-wrapper {
    flex: 1;
}

.content-label {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.content-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.content-title span {
    color: var(--color-primary);
}

.content-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.counter-wrapper {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.counter-number {
    display: flex;
    align-items: baseline;
}

.counter-number .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.counter-number .plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 2px;
}

.counter-text {
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.image-wrapper {
    flex: 1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.button-wrapper {
    margin-top: 2.5rem;
}

.about-cta {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta:hover {
    transform: translateY(-2px);
    background-color: var(--color-secondary);
    color: #fff;
}


/* About Us Section Content Ends */

/* Our value  */
.values-section {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-header {
    text-align: left;
    margin-bottom: 3rem;
    max-width: 800px;
}

.values-label {
    display: inline-block;
    background-color: #000;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.values-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1.2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.value-title {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}
/* Our Value Ends  */

/* Testimonial Starts */
/*.testimonial-section {*/
/*    padding: 80px 0;*/
/*    background-color: #fff;*/
/*}*/

/*.testimonial-container {*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*    padding: 0 2rem;*/
/*}*/

/*.testimonial-title {*/
/*    font-size: 2.5rem;*/
/*    color: var(--color-secondary);*/
/*    line-height: 1.2;*/
/*    margin-bottom: 3rem;*/
/*    max-width: 675px;*/
/*}*/

/*.testimonial-slider {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    padding: 2rem 0;*/
/*}*/

/*.testimonial-track {*/
/*    display: flex;*/
/*    transition: transform 0.5s ease;*/
/*}*/

/*.testimonial-item {*/
/*    flex: 0 0 100%;*/
/*    padding: 0 1rem;*/
/*}*/

/*.testimonial-content {*/
/*    background: #f8f9fc;*/
/*    padding: 2.5rem;*/
/*    border-radius: 15px;*/
/*    position: relative;*/
/*    top:-25px;*/
/*}*/

/*.testimonial-text {*/
/*    font-size: 1.25rem;*/
/*    color: var(--color-secondary);*/
/*    line-height: 1.6;*/
/*    margin-bottom: 1.5rem;*/
/*    font-weight: 500;*/
/*}*/

/*.testimonial-author {*/
/*    color: #666;*/
/*    font-size: 1rem;*/
/*    font-weight: 600;*/
/*}*/

/*.testimonial-navigation {*/
/*    display: flex;*/
/*    gap: 1rem;*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 1rem;*/
/*}*/

/*.nav-button {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*    background-color: var(--color-primary);*/
/*    color: var(--color-secondary);*/
/*    cursor: pointer;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.nav-button:hover {*/
/*    background-color: var(--color-secondary);*/
/*    color: #fff;*/
/*}*/

/*.nav-button:disabled {*/
/*    opacity: 0.5;*/
/*    cursor: not-allowed;*/
/*}*/

/* Testimonial Ends  */

/* Testimonial Starts */
.testimonial-section {
    padding: 80px 0;
    background-color: #fff;
}
.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.testimonial-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 3rem;
    max-width: 675px;
}
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-item {
    flex: 0 0 100%;
    padding: 0 1rem;
}
/* Updated content styles */
.testimonial-content {
    background: #f8f9fc;
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #f0f0f0;
    margin-right: 15px;
}
.testimonial-text {
    font-size: 1.25rem;
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.testimonial-author {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}
.testimonial-navigation {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 0;
    right: 1rem;
    top:0;
}

.nav-button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: #ffd166;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-button:hover {
    background-color: #ffba08;
}

.nav-button.prev {
    background-color: #f8f9fc;
    border: 1px solid rgba(0,0,0,0.1);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* Gallery Starts  */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    margin-bottom: 3rem;
}

.gallery-label {
    display: inline-block;
    background-color: #000;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    line-height: 1.2;
}

.gallery-wrapper {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.gallery-track {
    position: absolute;
    width: 100%;
    animation: scrollGallery 20s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@keyframes scrollGallery {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
/* Gallery Ends  */

/* Call start  */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('./images/Hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient rgba(251, 211, 67, 0.85), rgba(251, 211, 67, 0.85);
    z-index: 1;
}

.cta-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color:var(--color-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    
}

.cta-button:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    color:#fff;
}

/* Call Ends  */