    
  /* styles.css */
 .contact-container {
  display: block;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 50%;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 60px auto;
}

@media (max-width: 768px) {
  .contact-form {
    width: 90%;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

:root {
    --primary: #2A9D8F;
    --secondary: #264653;
    --accent: #E9C46A;
    --light: #F4F1DE;
    --dark: #333333;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #FFFFFF;
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: rgb(30, 150, 110);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.services-page header {
    background-color: rgb(30, 150, 110);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.logo a {
  background-color: white;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
}
.logo a span {
  color: var(--primary);
}

.nav-menu .nav-link {
  color: white;
  font-weight: 900;
}
.nav-menu .nav-link:hover {
  color: #FFD700; /* Bright gold - very visible against green */
}

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

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: rgb(30, 150, 110);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 900;
    transition: all 0.3s ease;
}

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

.nav-link.btn-primary {
  background-color: white;
  color: rgb(30, 150, 110);
  border: 2px solid white;
}
.nav-link.btn-primary:hover {
  background-color: #1a4c57; /* Even darker green */
  color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.video-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 70, 83, 0.5);
    z-index: 1;
}

.video-background iframe {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #264653;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* Team Section */
.team-section {
    margin-top: 80px;
}

.team-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--secondary);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: calc(50% - 20px);
    max-width: 500px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    overflow: hidden;
    text-align: left; /* Changed from center to left */
    padding-left: 25px; /* Add some padding so it's not against the edge */
}

.member-image img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0; /* Changed from margin: 0 auto to just margin: 0 */
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 25px;
}

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

.member-title {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 15px;
    line-height: 1.6;
}

.member-social {
    margin-top: 15px;
    display: flex;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-list {
    padding-left: 20px;
    margin-top: 15px;
}

.service-list li {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
}

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

/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-10px);
}

.insight-image {
    height: auto;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.insight-content {
    padding: 15px;
    text-align: center;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 16px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: var(--primary);
    color: white;
}

/* Contact */


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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
}

/* Footer Bar */
.footer-bar {
    background-color: var(--secondary);
    color: white;
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.footer-logo .green-text {
    color: var(--primary);
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

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

.footer-social .social-icon:hover {
    background-color: var(--primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    /* General responsive adjustments */
    .nav-menu {
        display: none;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    /* Hero section mobile adjustments */
    .hero {
        height: 450px;
        background-image: url('img/IMG_0343.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .video-background {
        display: none;
    }
    
    .hero:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(38, 70, 83, 0.5), rgba(38, 70, 83, 0.5));
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /* Team section mobile adjustments */
    .team-grid {
        flex-direction: column;
        width: 100%;
    }
    
    .team-member {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Services section mobile adjustments */
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    /* Insights section mobile adjustments */
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile adjustments */
    .footer-bar-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
     .member-image {
        text-align: left; /* Ensure it stays left-aligned on mobile */
    }
    
    .member-image img {
        margin: 0; /* Ensure no auto margins on mobile */
    }
}
.service-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-block.left .service-text {
  order: 1;
  width: 60%;
  text-align: left;
}

.service-block.right .service-text {
  order: 2;
  width: 60%;
  text-align: right;
}

@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-block .service-text {
    width: 100%;
    text-align: left;
  }
}



    .service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }
    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: #fff;
        padding: 30px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .service-card.reverse {
        flex-direction: column;
    }
   .service-icon {
    margin-bottom: 20px;
}
.service-icon svg {
    width: 50px;
    height: 50px;
}
.service-icon img {
    height: 100px;
    width: auto;
    object-fit: contain;
}
    .service-title {
        margin-bottom: 15px;
        font-size: 1.2em;
    }

.service-icon img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-icon img:hover {
    transform: scale(1.2);
}


@media (max-width: 768px) {
  .service-card,
  .service-card.reverse {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .service-card.reverse .service-content {
    text-align: left;
    align-items: flex-start;
  }
}
.two-column {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}

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

.contact-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  max-width: 600px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}




/* Responsive fix */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    padding: 30px 20px;
  }

  .contact-text,
  .contact-form {
    max-width: 100%;
    width: 100%;
  }
}
.contact-text {
  flex: 1;
  max-width: 500px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.contact-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box {
  background-color: #f9f9f9;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.contact-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .contact-box {
    width: 100%;
  }
}

.two-column {
  display: flex;
  flex-direction: row;
  justify-content: flex-end; /* Align form to the right */
  align-items: flex-start;
  gap: 60px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  margin-left: auto;
}

body {
  margin: 0;
}

.services-hero {
  background-image: url(service.jpg);
  background-size: cover;
  background-position: absolute;
  top: 0;
  height: 725px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

.services-hero h2 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  color: white;
}

.about-hero {
    background-image: url(About.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    left: 0;
    margin: 0;
    padding: 0;
    
}

.about-hero h2 {
    position: relative;
    color: #264653;
    z-index: 2;
    font-size: 48px;
    text-shadow:
    -1px -1px 0 white,
    1px -1px 0 white,
    -1px 1px 0 white,
    1px 1px 0 white;
}
.paragraph-box {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-subtitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: rgba(38,70,83,255);
    position: relative;
}

@media screen and (max-width: 768px) {
    
    .nav-menu {
        display: none;
    }
    
    .navbar {
        justify-content: center;
        display: block;
        text-align: center;
    }
    
    .logo {
        white-space: nowrap;
        display: inline-block;
    }
    
    /* Restore minimal container padding */
    header .container {
        padding-left: 0px;
        padding-right: 30px;
    }
    
    
    .paragraph-box {
        height: auto;
        min-height: 350px;
    }
    .service-card {
        padding: 20px 15px; /* Reduce padding */
    }
    .service-icon {
        margin-bottom: 15px; /* Less spacing */
    }
    .service-icon img {
        height: 70px; /* Smaller icons */
    }
}





header {
  margin: 0;
  padding: 20px 0; /* Keep existing padding ONLY if needed */
}

body {
  margin: 0;
}

section.services {
  margin-top: 0;
}


@media screen and (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
        position: relative;
        overflow: hidden;
    }
    
    .service-icon {
        display: none;
    }
    
    /* Ensure text appears above background icons */
    .service-card h3,
    .service-card p,
    .service-title {
        position: relative;
        z-index: 2;
    }
    
    /* Strategy Card */
    .service-card.strategy-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('img/icons_strategy.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.3;
        z-index: 0;
    }
    
    /* Relationships Card */
    .service-card.relationships-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('img/icon_relationships.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.3;
        z-index: 0;
    }
    
    /* Marketing Card */
    .service-card.marketing-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('img/icons_marketing.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.3;
        z-index: 0;
    }
    
    /* Thoughts Card */
    .service-card.thoughts-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('img/icon_thoughts.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.3;
        z-index: 0;
    }
    
    /* AI Card */
    .service-card.ai-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('img/icons_ai.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.3;
        z-index: 0;
    }
}