/* Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #C5A47E;
    /* Warm Beige/Gold tone typical of luxury interior */
    --secondary-color: #2C2C2C;
    /* Dark Grey/Black for contrast */
    --text-color: #555555;
    --bg-color: #FFFFFF;
    --bg-light: #F8F8F8;
    --font-main: 'Josefin Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #C5A47E;
    /* Warm Beige/Gold tone typical of luxury interior */
    --secondary-color: #2C2C2C;
    /* Dark Grey/Black for contrast */
    --text-color: #555555;
    --bg-color: #FFFFFF;
    --bg-light: #F8F8F8;
    --font-main: 'Josefin Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    /* Placeholder Interior Image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay for text readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simple hide for now, will add mobile menu later */
    }

    .hero-title {
        font-size: 40px;
    }
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.service-card h3 {
    gap: 20px;
}

.project-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.client-info span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #fff;
}

.blog-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Core Values Section */
.core-values-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.core-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.core-values-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-color);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Expertise Section */
.expertise-section {
    padding: 100px 0;
    background-color: #fff;
    /* Alternate background */
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Reusing values-grid layout as it is identical */
.expertise-card {
    background: var(--bg-light);
    /* Contrast with section bg */
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.expertise-card h3 {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.client-info span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.portfolio-title-wrapper h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-top: 10px;
    font-weight: 300;
    /* Thinner font weight as per image */
}

.portfolio-desc-wrapper {
    max-width: 500px;
    text-align: left;
}

.portfolio-desc-wrapper p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-image img {
    width: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.value-card h3 {
    gap: 30px;
}

.portfolio-title-wrapper h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-top: 10px;
    font-weight: 300;
    /* Thinner font weight as per image */
}

.portfolio-desc-wrapper {
    max-width: 500px;
    text-align: left;
}

.portfolio-desc-wrapper p {
    margin-bottom: 25px;
    color: var(--text-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 400;
}

@media (max-width: 992px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-title-wrapper h2 {
        font-size: 2.5rem;
    }
}

/* Process Section (How We Do It) */
.process-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* White background */
    color: var(--text-color);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.process-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    /* Primary color for icons */
}

.process-item h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.process-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    /* Added for positioning line */
}

.process-number {
    width: 40px;
    height: 40px;
    background-color: #999;
    /* Dark circle */
    color: #ffffff;
    /* White number */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

/* Connecting Line */
.process-line {
    position: absolute;
    top: 50%;
    /* Center vertically relative to wrapper */
    left: calc(50% + 30px);
    /* Start after the circle */
    width: calc(100% - 40px);
    /* Span to next item */
    height: 2px;
    background-color: #555;
    /* Darker line */
    z-index: 1;
    transform: translateY(-50%);
}

/* Dots at ends of line */
.process-line::before,
.process-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #555;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.process-line::before {
    left: 0;
}

.process-line::after {
    right: 0;
}

/* Hide line for the last item */
.process-item:last-child .process-line {
    display: none;
}

.process-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Adjust lines for 3-column layout if needed, or hide them on mobile */
    .process-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Why Choose Us Section */
.choose-us-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    /* Matching Core Values background */
}

.choose-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-us-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.choose-us-header .highlight {
    color: var(--primary-color);
    /* Primary color text */
    text-transform: uppercase;
    font-weight: 700;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.choose-us-item {
    text-align: center;
    padding: 20px;
}

.choose-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    /* Primary color for icons */
}

.choose-us-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.choose-us-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #aaa;
    font-size: 0.9rem;
}

.copyright-text a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {}

.choose-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.choose-us-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.choose-us-header .highlight {
    color: var(--primary-color);
    /* Primary color text */
    text-transform: uppercase;
    font-weight: 700;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.choose-us-item {
    text-align: center;
    padding: 20px;
}

.choose-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    /* Primary color for icons */
}

.choose-us-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.choose-us-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #aaa;
    font-size: 0.9rem;
}

.copyright-text a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* History Section */
.choose-us-header .highlight {
    color: var(--primary-color);
    /* Primary color text */
    text-transform: uppercase;
    font-weight: 700;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.choose-us-item {
    text-align: center;
    padding: 20px;
}

.choose-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    /* Primary color for icons */
}

.choose-us-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.choose-us-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #aaa;
    font-size: 0.9rem;
}

.copyright-text a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* History Section */
.history-section {
    padding: 100px 0;
    background-color: #fff;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.history-img-wrapper {
    position: relative;
    overflow: hidden;
}

.history-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.history-img-wrapper.img-1 {
    height: 450px;
}

.history-img-wrapper.img-2 {
    height: 450px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.history-img-2 {
    height: 75% !important;
}

.history-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}

.history-badge h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.history-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.highlight-bg {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0 10px;
    text-transform: uppercase;
}

.history-desc {
    margin-bottom: 20px;
    color: var(--text-color);
}

.history-features {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.history-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons-history {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #aaa;
    font-size: 0.9rem;
}

.copyright-text a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* History Section */
.history-section {
    padding: 100px 0;
    background-color: #fff;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.history-img-wrapper {
    position: relative;
    overflow: hidden;
}

.history-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.history-img-wrapper.img-1 {
    height: 450px;
}

.history-img-wrapper.img-2 {
    height: 450px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.history-img-2 {
    height: 75% !important;
}

.history-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}

.history-badge h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.history-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.highlight-bg {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0 10px;
    text-transform: uppercase;
}

.history-desc {
    margin-bottom: 20px;
    color: var(--text-color);
}

.history-features {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.history-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons-history {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .history-img-wrapper.img-2 {
        margin-top: 0;
    }
}

/* Timeless Design Section */
.timeless-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeless-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeless-content {
    padding-right: 20px;
}

.timeless-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.timeless-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.timeless-text {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    padding: 15px 35px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.timeless-image img {
    grid-template-columns: 1fr;
    gap: 20px;
}

.history-img-wrapper {
    position: relative;
    overflow: hidden;
}

.history-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.history-img-wrapper.img-1 {
    height: 450px;
}

.history-img-wrapper.img-2 {
    height: 450px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.history-img-2 {
    height: 75% !important;
}

.history-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}

.history-badge h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.history-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.highlight-bg {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0 10px;
    text-transform: uppercase;
}

.history-desc {
    margin-bottom: 20px;
    color: var(--text-color);
}

.history-features {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.history-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons-history {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .history-img-wrapper.img-2 {
        margin-top: 0;
    }
}

/* Timeless Design Section */
.timeless-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeless-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeless-content {
    padding-right: 20px;
}

.timeless-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.timeless-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.timeless-text {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    padding: 15px 35px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.timeless-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .timeless-grid {
        grid-template-columns: 1fr;
    }

    .timeless-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .timeless-title {
        font-size: 2.5rem;
    }
}

/* Footer Logo Image Styles */
.footer-logo {
    margin-bottom: 20px;
    font-size: 0;
}

.footer-logo img {
    height: 75% !important;
}

.history-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
}

.history-badge h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.history-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.highlight-bg {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0 10px;
    text-transform: uppercase;
}

.history-desc {
    margin-bottom: 20px;
    color: var(--text-color);
}

.history-features {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.history-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons-history {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .history-img-wrapper.img-2 {
        margin-top: 0;
    }
}

/* Timeless Design Section */
.timeless-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeless-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeless-content {
    padding-right: 20px;
}

.timeless-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.timeless-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.timeless-text {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    padding: 15px 35px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.timeless-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .timeless-grid {
        grid-template-columns: 1fr;
    }

    .timeless-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .timeless-title {
        font-size: 2.5rem;
    }
}

/* Footer Logo Image Styles */
.footer-logo {
    margin-bottom: 20px;
    font-size: 0;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-full-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.contact-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-full {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-color);
    max-width: 500px;
    margin: 0 auto;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: center;
}

.contact-detail-item {
    background: var(--bg-light);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-detail-item h3 {
    font-size: 24px;
}

@media (max-width: 992px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .history-img-wrapper.img-2 {
        margin-top: 0;
    }
}

/* Timeless Design Section */
.timeless-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeless-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.timeless-content {
    padding-right: 20px;
}

.timeless-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.timeless-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.timeless-text {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    padding: 15px 35px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.timeless-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .timeless-grid {
        grid-template-columns: 1fr;
    }

    .timeless-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .timeless-title {
        font-size: 2.5rem;
    }
}

/* Footer Logo Image Styles */
.footer-logo {
    margin-bottom: 20px;
    font-size: 0;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-full-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.contact-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-full {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-color);
    max-width: 500px;
    margin: 0 auto;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: center;
}

.contact-detail-item {
    background: var(--bg-light);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-detail-item h3 {
    font-size: 24px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-detail-item p {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: #999;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-full-image {
        height: 300px;
    }

    .contact-details-grid {
        text-align: center;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background-color: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.mv-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.mv-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.mv-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Our Team Section */
.team-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.team-header {
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #999;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    justify-content: center;
}

.team-card {
    text-align: center;
}

.team-image-wrapper {
    width: 180px;
    height: 200px;
    margin: 0 auto 25px;
    position: relative;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.hexagon {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    /* Placeholder grey */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hexagon svg {
    width: 60% !important;
    height: 60% !important;
    fill: var(--secondary-color);
}

.team-card:hover .hexagon {
    background-color: var(--primary-color);
}

.team-card:hover .hexagon svg {
    fill: #fff;
}

.team-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-designation {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

.team-desc {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}