* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, p, span, div, li, ol, ul, a, h1, h2, h3, h4, h5, h6 {
  font-family: 'Times New Roman', Times, serif !important;
  font-size: 12px !important;
}

:root {
    --forest-green: #014421;
    --ivory: #FAF8F0;
    --bronze: #B08D57;
    --midnight-blue: #002147;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--ivory);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
    background: rgba(250, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(1, 68, 33, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bronze);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--bronze);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s;
}

/* Hero Sections */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    padding: 8rem 5% 4rem;
}

.hero-home {
    background: linear-gradient(135deg, rgba(1, 68, 33, 0.9), rgba(0, 33, 71, 0.8)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600') center/cover;
}

.hero-about {
    background: linear-gradient(135deg, var(--forest-green), var(--midnight-blue));
}

.hero-services {
    background: linear-gradient(135deg, rgba(1, 68, 33, 0.95), rgba(0, 33, 71, 0.85)), 
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600') center/cover;
}

.hero-team {
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.9), rgba(1, 68, 33, 0.8)), 
                url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1600') center/cover;
}

.hero-testimonials {
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.7), rgba(250, 248, 240, 0.9));
}

.hero-gallery {
    background: var(--midnight-blue);
}

.hero-contact {
    background: var(--ivory);
    color: var(--forest-green);
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(176, 141, 87, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
}

.btn-primary {
    background: var(--bronze);
    color: white;
    box-shadow: 0 5px 20px rgba(176, 141, 87, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(176, 141, 87, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--ivory);
    border: 2px solid var(--forest-green);
}

.btn-secondary:hover {
    background: var(--forest-green);
    border-color: var(--forest-green);
}

/* Section Styling */
section {
    padding: 6rem 5%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--ivory);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--bronze);
    box-shadow: 0 15px 40px rgba(176, 141, 87, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Metrics */
.metrics {
    background: var(--midnight-blue);
    color: var(--ivory);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.metric-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s;
}

.metric-item.animate {
    opacity: 1;
    transform: scale(1);
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Journey Steps */
.journey {
    background: linear-gradient(135deg, var(--ivory), #f5f3eb);
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--bronze);
    z-index: 0;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 5px 20px rgba(176, 141, 87, 0.4);
    transition: transform 0.3s;
}

.step:hover .step-circle {
    transform: scale(1.1) rotate(5deg);
}

.step h3 {
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 0.8rem;
}

.step p {
    color: #666;
    line-height: 1.5;
}

/* Story Section */
.story-section {
    background: white;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-layout img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Pillars */
.pillars {
    background: linear-gradient(135deg, #f5f3eb, var(--ivory));
}

/* Integrity Section */
.integrity {
    background: var(--midnight-blue);
    color: var(--ivory);
}

.integrity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.integrity-item {
    text-align: center;
    padding: 2rem;
}

.integrity-icon {
    font-size: 4rem;
    color: var(--bronze);
    margin-bottom: 1.5rem;
}

.integrity-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bronze);
}

/* Services */
.service-section {
    background: white;
}

.service-section:nth-child(even) {
    background: var(--ivory);
}

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

.service-content h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-illustration {
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 2rem auto;
    background: linear-gradient(135deg, var(--forest-green), var(--midnight-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--bronze);
}
.service-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: var(--ivory);
    border: 2px solid var(--bronze);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(176, 141, 87, 0.3);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-green), var(--bronze));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* fills the circle without distortion */
    border-radius: 50%;    /* keeps the image circular */
    display: block;        /* removes extra bottom whitespace */
}

.team-card h3 {
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.read-bio {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--bronze);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.team-card:hover .read-bio {
    display: inline-block;
}

.read-bio:hover {
    background: var(--forest-green);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--ivory);
    padding: 3rem;
    border-radius: 10px;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--forest-green);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: black;
    transform: scale(1.2);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--forest-green);
}

.modal-content h2 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.modal-content p {
    line-height: 1.8;
    color: #555;
}

/* Testimonials */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    background: var(--ivory);
    padding: 4rem 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--bronze);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--bronze);
    position: absolute;
    top: -30px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest-green);
}

.testimonial-role {
    color: #888;
    margin-top: 0.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bronze);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--forest-green);
    transform: scale(1.1);
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--bronze);
    color: var(--forest-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--bronze);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
    background: linear-gradient(135deg, var(--forest-green), var(--midnight-blue));
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(176, 141, 87, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Form */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--bronze);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-info h3 {
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-item {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.download-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--midnight-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.download-link:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--midnight-blue);
    color: var(--ivory);
    padding: 4rem 5% 2rem;
    border-top: 3px solid var(--bronze);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    color: var(--bronze);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: var(--ivory);
    opacity: 0.85;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-section a:not(.social-icon):hover {
    color: var(--bronze);
}
.footer-section a:hover{
    color: black;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 240, 0.2);
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(176, 141, 87, 0.5);
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--forest-green);
    transition: all 0.3s;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .journey-steps::before {
        display: none;
    }
}

/* Success Message */
.success-message {
    display: none;
    background: var(--forest-green);
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 2rem;
    animation: slideDown 0.3s;
}

.success-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--ivory);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}











.social-icons .social-icon {
  width: 40px;
  height: 40px;
  background: var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem; 
  transition: all 0.3s;
  text-decoration: none; 
}
.social-icons .social-icon i {
  margin: 0;
  padding: 0;
  line-height: 1; 
}


.social-icon i:hover{
    color: black;
}