/* Add font import at the top */
@font-face {
    font-family: 'Garamond';
    src: url('fonts/garamond.ttf') format('truetype');
}

/* Reset and Base Styles */
:root {
    --font-primary: 'Garamond Bold';
    --font-secondary: 'Garamond';
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: #174fa2;
}

h1,
h2 {
    font-family: var(--font-primary);
    color: #bca092;
    letter-spacing: 1pt;
    font-size: 2rem;
}
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: #bca092;
    letter-spacing: 1pt;
}

p {
    color: #174fa2;
    font-size: 1.5rem;
    letter-spacing: 1pt;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background: transparent;
    padding: 1rem 2rem;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 3.5rem;
}

.logo {
    display: flex;
    align-items: center;
    align-items: baseline;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
}

.logo-image {
    max-width: 150px;
    max-height: 50px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.logo .fas {
    font-size: 1.5rem;
    color: white;
    margin-right: 0.5rem;
}

.navbar-scrolled {
    background: rgba(51, 51, 51, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    visibility: visible;
}

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

.nav-links li a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    font-weight: 300;
}

.nav-links li a:hover {
    color: black;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: black;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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


/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero-3.png');
    background-size: cover;
    background-position: left center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    color: white;
}

.hero-info {
    position: relative;
    bottom: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

.hero-content {
    max-width: 1080px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    padding: 0px;
    margin: 0px;
}


.hero-image {
    margin-bottom: 0.2rem;
    max-width: 200px;
    max-height: 300px;
}

.hero p {
    margin: 0;
    margin-bottom: 1.5rem;
    max-width: 550px;
    text-align: justify;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-info a {
    margin-top: 1rem;
    opacity: 1;
}

.linkedup-icon-container {
    max-width: 150;
    max-height: 150px;
    padding: 1rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.927);
    margin-bottom: 2rem;
}

.linkedup-icon {
    width: 100%;
    height: 100%;
    padding: 1rem;
    object-fit: contain;
    opacity: 1;  
}

.cta-button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: #174fa2;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 1rem;
    transition: background 0.3s ease;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 1rem;
}

.cta-button:hover {
    background: #bca092;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
}


/* Contact Form */
.contact {
    background-color: #f0f0f0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 1rem;
    background: #174fa2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #bca092;
}

/* Footer */
footer {
    background: #bca092;
    color: white;
    text-align: center;
    padding: 1rem;
}

.nav-links {
    font-weight: 500;
}


.service-card p {
    font-weight: 300;
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

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

    section {
        padding: 3rem 1rem;
    }

    .hero {
        background-position: 15% center;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 10% center;
    }
}

/* About Section */

.about {
    background-color: #f0f0f0;
}

.about-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-text {
    text-align: center;
    color: black;
    font-size: 1.2rem;
}

/* About and Services Text */
.about-text,
.services-text {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.service-list {
    list-style-position: outside;
    text-align: left;
    color: #174fa2;
    margin-bottom: 1.5rem;
    padding: 0 0 0 1.2rem;
    margin-top: 1rem;
}

.service-content h3 {
    font-size: 1.3rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 400;
    font-size: 1.3rem;
    font-family: var(--font-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .hero p,
    .about-text p,
    .services-text p,
    .service-list li {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.375rem;
    }
}

/* Update the text color for scrolled state */
.navbar-scrolled .logo h1,
.navbar-scrolled .nav-links li a {
    color: #fff;
}

/* Update hover state for scrolled navbar */
.navbar-scrolled .nav-links li a:hover {
    color: #bca092;
}

.navbar-scrolled .nav-links li a::after {
    background-color: #fff;
}

/* Services Section */
.services {
    padding: 2rem;
    padding-top: 4rem;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 0 1rem;
}

.service-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 150px;
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 250px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-group {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.service-group:last-child {
    border-bottom: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: column;
    }

    .service-section {
        width: 100%;
    }

    .service-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .service-image {
        height: 35vh;
        min-height: 200px;
    }

    .service-content {
        gap: 1.5rem;
    }

    .service-group {
        padding-bottom: 1rem;
    }
}

/* Sticky Social Buttons */
.sticky-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.social-button:hover {
    transform: translateX(-5px);
    box-shadow: 2px 2px 8px #bca092;
}

.linkedin {
    background: #0077b5;
}

.phone {
    background: #25D366;
}

.instagram {
    background: #E4405F;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .sticky-social {
        right: 10px;
    }
    
    .social-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}




