@charset "UTF-8";

/* stop the responsive on phone */
@media (max-width: 1024px) {
    body {
        width: 1024px !important;
        overflow-x: auto !important;
    }
}

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }



        /* Header Section */
        .header-wrapper {
            background-color: #e1eaef;
            width: 100%;
        }
        .header {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
        }
        .header h1 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
        }
        .nav-menu a {
            text-decoration: none;
            color: black;
            font-weight: 400;
        }

.nav-menu a:hover, 
.nav-menu a:focus {
        text-decoration: underline;
}
     
	
.nav-menu a:active {
    color: darkblue;
        text-decoration: underline;

}

        /* Hero Section */
        .hero {
            background-color: #e1eaef;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            max-width: 50%;
    		vertical-align: top; /* here */

        }



        .hero-logo {
            width: 200px;
            margin-bottom: 10px;
        }
        .hero h1 {
            font-size: 2.4rem;
            font-weight: 700;
            margin: 20px 0 30px 0;
            line-height: 1.2;
			letter-spacing: -1px;
		
        }
        .hero h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
			line-height: 1.2;
			letter-spacing: -1px;
        }
		
		.hero h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: -15px;
			letter-spacing: -1px;
        }
		
        .hero p {
            font-size: 1rem;
            line-height: 1.5;
        }
		
        .hero-image {
            position: absolute;
            right: 0;
            top: 0;
            width: 50%;
			height: 100%;
			
			
        }
        .hero-image img {
             max-height: 100%;
  			width: auto;
            object-fit: cover;
        }

        /* Content Sections */
        .content-section {
            max-width: 1200px;
            margin: 50px auto;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: #e1eaef;
            padding: 40px;
            border-radius: 10px;
        }
        .content-text {
            flex: 1;
        }
        .content-text h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
		
		.content-text h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
		
		
        .content-text p {
            font-size: 1rem;
            line-height: 1.5;
			flex: 1;
        }
        .content-image {
            flex: 1;
        }
        .content-image img {
            width: 100%;
            border-radius: 10px;
        }



        .content-section.reverse {
         flex-direction: row-reverse;

        }
		
		.rightbox {
			padding-left: 10px;
		}
		
		.leftbox {
			padding-right: 10px;
		}
		
	      /* Features Section */
        .features-container {
            display: flex;
			gap: 20px;
			justify-content: space-between;
			align-items: stretch; /* Ensures equal height */
			max-width: 1280px;
            margin: 50px auto;	
        }

        .feature-column {
            display: flex;
			flex-direction: column;
			justify-content: space-between; /* Ensures text is at the top and image is at the bottom */
			width: 32%; /* Ensures three columns fit within 1200px */
            background-color: #e1eaef;
            padding: 30px;
            border-radius: 10px;
            text-align: left;  
        }


        .feature-column h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
		
        }
        .feature-column p {
              flex-grow: 1; /* Pushes the image to the bottom */

}
		
        .feature-column img {
            width: 100%;
            border-radius: 10px;
        }
		
		

		
	/* My Role & Project Outcomes Section */
.role-outcomes-section {
    max-width: 1260px;
    margin: 50px auto;
    display: flex;
    gap: 20px; /* Reduced the gap between columns */
    justify-content: space-between;
	align-items: stretch; /* Ensures columns have equal height */
	
	
}

.role-outcomes-item {
    width: 46%; /* Adjusted to ensure less empty space */
    background-color: #e1eaef;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures text is at the top and image is at the bottom */
	align-items: flex-start; /* Ensures both columns align to the top */
}
	

	
	.role-outcomes-item h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 0px;
		margin-top: 0px;
        }	
		
		.role-outcomes-item-black h3 {
            font-size: 1.8rem;
            font-weight: 600;
	
        }		
			
		
	.role-outcomes-item p {
	    flex-grow: 1; /* Pushes the image to the bottom */
        }
		
	.role-outcomes-item p-black {
	    flex-grow: 1; /* Pushes the image to the bottom */
        }
			
		
	.small-text {
    font-size: 0.8rem; 
    line-height: 1.6; 
}
	
/* Footer Styling */
    .footer {
        background-color: #e5e7eb;
        padding: 24px 0;
    }
    .footer-container {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 24px;
    }
    .footer-name {
        font-size: 18px;
    }
    .footer-links {
        display: flex;
        gap: 16px;
    }
    .footer-link {
        color: #4b5563;
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }
    .footer-notice {
        max-width: 800px;
        margin: 24px auto 0;
        text-align: center;
        color: #6b7280;
        font-size: 12px;
    }
.footer-icon {
    text-decoration: none;
    color: #336666;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-icon i {
    font-size: 1.2em;
}

.footer-icon:hover {
    color: #000;
}
	
		
/* Callout Styling */
		
.callout {
	max-width: 1260px;
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
		}
 .largetext {
	font-weight: 200;
	font-size: 2.2rem;
		}
	
/* eyebrow */

.eyebrow {
  display: block;
  font-size: 0.875rem; /* 14px if base is 16px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 0.25rem; /* Keeps it close to the h3 */
}

.eyebrow-header {
  margin-top: -10px; /* Removes any default top margin */
font-size: 1.4rem;
 font-weight: 600;
 margin-bottom: 10px;

}



/* Case Study Grid Layout */
.case-study-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 1260px;
    margin: 50px auto;
}

/* Individual Case Tiles */
.case-tile {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    width: 24%; /* Ensures four tiles fit in one row */
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.case-tile:hover {
    transform: scale(1.05);
}

/* Rounded Avatar Images */
.case-tile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
    border: 3px solid white;
}

/* Text Overlay */
.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease-in-out;
}

.case-tile:hover .overlay {
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .case-study-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .case-tile {
        width: 48%; /* Two columns on tablets */
    }
}

@media (max-width: 600px) {
    .case-study-grid {
        flex-direction: column;
        gap: 15px;
    }

    .case-tile {
        width: 100%; /* Full width on mobile */
    }
}
