/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    min-height: 100vh;
    position: relative;
    color: #fff;
    padding: 0 5%;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.hero-bg-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.2;
}

.hero-bg-image img {
    width: 20vw;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* Video Section */
.video-section {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Video responsive adjustments */
@media (max-width: 768px) {
    .video-section {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .video-section {
        height: 30vh;
    }
}



/* Hero Content */
.hero-content {
    max-width: 900px;
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0;
    font-weight: 300;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

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

/* Projects Section */
.projects-section {
    background: linear-gradient(90deg, #ff6b35 0%, #8b3a3a 50%, #2d2626 100%);
    padding: 80px 5%;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.section-title {
    font-size: 56px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
    max-height: 500px;
}

.project-item {
    background: #f5f5f5;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.project-large {
    grid-column: 1;
    border-left: 8px solid #8b3a3a;
}

.project-medium {
    grid-column: 2;
}

.project-small {
    grid-column: 3;
}

/* Statistics Section */
.stats-section {
    position: relative;
    padding: 120px 5%;
    color: #fff;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.stats-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stats-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-description {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 80px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 72px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #fff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    background: #e8e8e8;
    padding: 100px 5%;
}

.section-title-dark {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ff6b35;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #ff6b35;
}

.service-description {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-weight: 400;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.tag {
    background: #e8e8e8;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}
.stats-section{
    overflow: hidden;
}
.service-card:hover .tag {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

/* Leadership Section */
.leadership-section {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.leadership-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23333" width="100" height="100"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 0;
}


.leadership-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url('assets/PNG Elements/Web Banner _Team.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
}

.leadership-title {
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.leadership-title h2 {

    background-color: #000;
}

.leadership-content {
    position: relative;
    z-index: 2;
    padding: 70px 5%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.leadership-description {
    font-size: 20px;
    line-height: 1.8;
    color: #fff;
    font-weight: 300;
    max-width: 100%;
}

/* Team Section */
.team-section {
    background: #000;
    padding: 50px 5% 80px;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: end;
}

.team-member {
    border-radius: 95px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.team-member:hover {
    transform: scale(1.08);
}

.team-member:nth-child(1) {
    margin-top: -60px;
    animation: float1 6s ease-in-out infinite;
}

.team-member:nth-child(2) {
    margin-top: 60px;
    animation: float2 7s ease-in-out infinite;
}

.team-member:nth-child(3) {
    margin-top: -40px;
    animation: float3 8s ease-in-out infinite;
}

.team-member:nth-child(4) {
    margin-top: 40px;
    animation: float4 6.5s ease-in-out infinite;
}

/* Floating animations for each member */
@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -15px);
    }

    50% {
        transform: translate(-8px, -10px);
    }

    75% {
        transform: translate(12px, 5px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-12px, 10px);
    }

    50% {
        transform: translate(10px, 15px);
    }

    75% {
        transform: translate(-8px, -5px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(15px, 8px);
    }

    50% {
        transform: translate(-10px, 12px);
    }

    75% {
        transform: translate(8px, -10px);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-10px, -12px);
    }

    50% {
        transform: translate(12px, 8px);
    }

    75% {
        transform: translate(-15px, 10px);
    }
}

.team-member-blue {
    background: linear-gradient(180deg, #d4e7f5 0%, #b8d9f0 100%);
    width: 100%;
    height: 500px;
}

.team-member-yellow {
    background: linear-gradient(180deg, #f4e4b8 0%, #e8d49a 100%);
    width: 100%;
    height: 500px;
}

.team-member-pink {
    background: linear-gradient(180deg, #f5d4e4 0%, #f0b8d9 100%);
    width: 100%;
    height: 500px;
}

.team-member-green {
    background: linear-gradient(180deg, #e4f5b8 0%, #d0e89a 100%);
    width: 100%;
    height: 500px;
}

.team-image {
    flex: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23555" width="100" height="100"/></svg>');
    background-size: cover;
    background-position: center;
}

.team-info {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 0 15px;
    color: #000;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.team-role {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Footer Section */
.footer-section {
    background: #000;
    padding: 80px 5% 40px;
    color: #fff;
}

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

.footer-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.footer-tagline {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.social-links a {
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #fff;
}

/* Scroll Animations */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.stat-item {
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.5s;
}

.project-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.project-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #ff6b35;
    }

    .projects-section {
        padding: 40px 5% !important;
        overflow-x: hidden;
    }

    .projects-grid {
        display: none;
    }

    .project-item {
        min-height: 200px;
        max-height: 300px;
        width: 100%;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .team-member:nth-child(1) .team-info {
        top: 0px !important;
        padding: 8px 6px !important;
    }
    
    .team-member:nth-child(1) .team-name {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }
    
    .team-member:nth-child(1) .team-role {
        font-size: 9px !important;
    }
    
    .leadership-content {
        padding: 20px 5%;
    }

    .leadership-overlay {
        min-height: 50vh;
        padding: 20px 0;
    }

    .leadership-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .team-info {
        top: 5px;
        padding: 10px 8px;
    }

    .team-name {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .team-role {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {

    .hero-title {
        font-size: 48px;
    }

    .section-title,
    .section-title-dark {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .project-large,
    .project-medium,
    .project-small {
        grid-column: 1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title,
    .section-title-dark {
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .service-card {
        padding: 30px;
    }

    .leadership-title {
        font-size: 32px;
        background-color: #0000;
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
    }

    .team-member {
        max-width: 200px;
    }

    .team-member-blue,
    .team-member-yellow,
    .team-member-pink,
    .team-member-green {
        height: 350px;
    }

    .team-member:nth-child(1) {
        transform: translateY(-50px);
    }

    .team-member:nth-child(2) {
        transform: translateY(50px);
    }

    .team-member:nth-child(3) {
        transform: translateY(-35px);
    }

    .team-member:nth-child(4) {
        transform: translateY(35px);
    }

    .team-member.animate-in:nth-child(1) {
        transform: translateY(-50px);
    }

    .team-member.animate-in:nth-child(2) {
        transform: translateY(50px);
    }

    .team-member.animate-in:nth-child(3) {
        transform: translateY(-35px);
    }

    .team-member.animate-in:nth-child(4) {
        transform: translateY(35px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 100px 5%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-title,
.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.form-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #ff6b35;
    margin-top: 10px;
    border-radius: 2px;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f1f3f4;
    transform: translateX(5px);
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.submit-btn {
    background: #ff6b35;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .contact-title,
    .form-title {
        font-size: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}

.contact-content {
    padding: 0;
}

.contact-main-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-description:hover {
    transform: translateX(10px);
    color: #1a1a1a;
}

.contact-description strong {
    color: #ff6b35;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-description:hover strong {
    color: #e55a2b;
}

.contact-details {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-details p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-details p:hover {
    color: #ff6b35;
    transform: scale(1.02);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #ff6b35;
    color: #fff;
}

/* Hero line-by-line animation styles */
.hero-line {
    display: inline-block;
    opacity: 0;
}

.hero-line.aos-animate {
    opacity: 1;
}