* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #333; 
}

.hero-section {
    width: 100%;
    min-height: 100vh; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Background Image.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 100px;
}

.logo img {
    max-height: 45px; 
    display: block;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    margin-left: 40px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fed136;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.subtitle {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

.title {
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.btn {
    text-decoration: none;
    color: #fff;
    background-color: #fed136;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e5bc31;
}

.services-section {
    width: 100%;
    height: 568px; 
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    text-align: center;
}

.services-header {
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-family: 'Georgia', serif; 
    font-style: italic;
    font-size: 16px;
    color: #777;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 40px; 
    max-width: 1000px;
    width: 100%;
}

.service-box {
    flex: 1; 
    max-width: 33.33%;
    padding: 0 10px;
}

.icon-circle {
    width: 75px; 
    height: 75px; 
    border: 3px solid #fed136; 
    background-color: transparent; 
    border-radius: 50%; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin: 0 auto 25px auto; 
}

.service-icon {
    max-width: 40px; 
    max-height: 40px;
    display: block;
}

.service-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.service-box p {
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.portfolio-section {
    width: 100%;
    height: 1220px; 
    background-color: #f7f7f7; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 70px;
}

.portfolio-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    max-width: 1000px;
    width: 100%;
}

.portfolio-item {
    background-color: #fff; 
}

.portfolio-img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    display: block;
}

.portfolio-text {
    padding: 25px 15px;
    text-align: center;
}

.portfolio-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.portfolio-text p {
    font-family: 'Georgia', serif; 
    font-style: italic;
    font-size: 14px;
    color: #777;
}

.about-section {
    width: 100%;
    height: 1650px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #e9ecef;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    min-height: 160px;
}

.timeline-image {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto; 
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 7px solid #f1f1f1;
    z-index: 2;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-panel {
    width: 50%;
}

.timeline-panel.left {
    text-align: right;
    padding-right: 120px;
}

.timeline-panel.right {
    text-align: left;
    padding-left: 120px;
    margin-left: auto;
}

.timeline-panel h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.timeline-panel p {
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-top: 10px;
}

.timeline-item.end {
    justify-content: center;
    margin-bottom: 0;
}

.timeline-image.end-circle {
    background-color: #fed136;
    border: 7px solid #f1f1f1;
    color: #fff;
}

.timeline-image.end-circle h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    margin: 0;
}

.team-section {
    width: 100%;
    height: 800px; 
    background-color: #f9f9f9; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 40px; 
    max-width: 1000px;
    width: 100%;
    margin-bottom: 50px;
}

.team-member {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 7px solid #fff; 
    margin-bottom: 20px;
    background-color: #111; 
}

.team-member h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.team-role {
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #222;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a img {
    width: 16px;
    height: 16px;
    display: block;
    filter: brightness(0);
    transition: all 0.3s ease;
    object-fit: contain;
}

.social-links a:hover {
    background-color: #222;
}

.social-links a:hover img {
    filter: brightness(1);
}

.team-footer {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.team-footer p {
    font-family: 'Georgia', serif;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.clients-section {
    width: 100%;
    height: 165px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px; 
    max-width: 1000px;
    width: 100%;
    padding: 0 20px;
}

.clients-container a {
    display: block;
}

.clients-container img {
    max-height: 50px; 
    max-width: 200px;
    width: auto;
    object-fit: contain;
    display: block;
}

.contact-section {
    width: 100%;
    height: 680px;
    background-color: #222;
    background-image: url('world.png');
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.contact-form {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: flex;
    width: 100%;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group-right {
    flex: 1;
    display: flex;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #777;
    background-color: #fff;
    text-transform: uppercase;
    outline: none;
}

.form-group-left input {
    margin-bottom: 30px;
}

.form-group-left input:last-child {
    margin-bottom: 0;
}

.contact-form textarea {
    height: 100%;
    resize: none;
    min-height: 210px;
}

.submit-btn {
    background-color: #fed136;
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e5bc31;
}

.footer-section {
    width: 100%;
    height: 90px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    flex: 1;
    font-size: 14px;
    color: #777;
}

.footer-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-socials a img {
    width: 16px;
    height: 16px;
    display: block;
    object-fit: contain;
}

.footer-socials a:hover {
    background-color: #ffc800;
}

.footer-spacer {
    flex: 1;
}