/* Global Styles */
:root {
    --primary-color: #d3a82b;
    --secondary-color: #160e09;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --black-color: #000000;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #b89322;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background-color: #2a1f17;
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 18px;
}

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

/* Header Styles */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-weight: 500;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.search-box {
    display: flex;
    margin-left: 30px;
}

.search-box input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(22, 14, 9, 0.7), rgba(22, 14, 9, 0.7)), url('../images/hm.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mission/Vision Section */
.mission-vision {
    padding: 100px 0;
    background-color: var(--white-color);
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-box {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white-color);
    font-size: 30px;
}

.mv-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 168, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.client-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.client-slide {
    flex: 0 0 16.666%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-slide img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(22, 14, 9, 0.8), rgba(22, 14, 9, 0.8)), url('../images/cta.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: var(--white-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 80px 0 0;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-col p {
    margin-bottom: 20px;
    color: #aaa;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(22, 14, 9, 0.7), rgba(22, 14, 9, 0.7)), url('../images/cta.jpg') no-repeat center center/cover;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white-color);
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 20px;
}

/* About Page */
.about-content {
    padding: 100px 0;
}

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}


.experience-box {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-box h3 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-box p {
    font-size: 14px;
    font-weight: 500;
}

.milestones {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--light-text);
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-member {
    flex: 0 0 calc(25% - 30px);
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(22, 14, 9, 0.7);
    padding: 15px 0;
    transition: var(--transition);
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--white);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-info span {
    display: block;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--light-text);
    font-size: 14px;
}


.org-structure {
    padding: 80px 0;
}

.org-chart {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.org-chart img {
    width: 100%;
    height: auto;
}

/* Services Page */
.services-section {
    padding: 100px 0;
}

.service-details {
    margin-bottom: 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.service-item:nth-child(even) .service-info {
    order: -1;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-info p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.service-info h3 {
    margin: 25px 0 15px;
    font-size: 22px;
    color: var(--secondary-color);
}

.service-info ul {
    margin-bottom: 25px;
}

.service-info ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--gray-color);
}

.service-info ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

.other-services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.material-card {
    background-color: var(--white-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.material-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.material-card h3 {
    font-size: 18px;
}

/*procees section*/

.process-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 0 0 calc(20% - 20px);
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.process-step::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    top: 25px;
    left: 50%;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--light-text);
    font-size: 14px;
}

/* Blog Page */
.blog-section {
    padding: 100px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-header p {
    color: var(--light-text);
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.blog-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px 30px;
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
    line-height: 1;
}

.blog-date span:first-child {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.blog-date span:last-child {
    font-size: 14px;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--light-text);
}

.blog-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: inherit;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 4px;
    background-color: var(--light-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.page-btn.active,
.page-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.newsletter {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}



/* Shops Page */
.shops-navigation {
    padding: 30px 0;
    background-color: var(--white-color);
    border-bottom: 1px solid #eee;
}

.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.shop-section {
    padding: 80px 0;
    display: none;
}

.shop-section.active {
    display: block;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.equipment-card {
    background-color: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.equipment-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 168, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.equipment-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.equipment-card p {
    color: var(--primary-color);
    font-weight: 500;
}

.pattern-example {
    margin-top: 50px;
    text-align: center;
}

.pattern-example h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--secondary-color);
}

.pattern-example img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white-color);
    padding: 15px;
    text-align: center;
}

/* Clients Page */
.clients-page {
    padding: 100px 0;
}

.client-list {
    margin-bottom: 80px;
}

.client-category {
    margin-bottom: 60px;
}

.client-category h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.client-category h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.client-item {
    background-color: var(--white-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-item img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-item h4 {
    text-align: center;
    font-size: 16px;
    color: var(--secondary-color);
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--gray-color);
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    top: -20px;
    left: -15px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    color: var(--primary-color);
    font-weight: 500;
}

/* Certificates Page */
.certificates-section {
    padding: 100px 0;
}

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

.certificate-card {
    background-color: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certificate-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 168, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
}

.certificate-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--secondary-color);
}

.certificate-card p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 15px;
}

.policy-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.policy-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.policy-content h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.policy-content ul {
    margin-bottom: 25px;
}

.policy-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--gray-color);
}

.policy-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-item p {
    color: var(--gray-color);
}

.business-hours {
    margin-top: 40px;
}

.business-hours h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.business-hours p {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 168, 43, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-section {
    padding: 0 0 100px;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Page (to be styled similarly) */

/* Responsive Styles */
@media (max-width: 992px) {
    .mv-container {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-info {
        order: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white-color);
        flex-direction: column;
        padding: 40px 20px;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
    }
    
    .navbar ul li {
        margin: 0 0 20px;
    }
    
    .search-box {
        margin: 30px 0 0;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .page-banner p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .client-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
    
    .author-info p {
        font-size: 14px;
    }
}