﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
  user-select: none;
}

::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
} 

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    color: #fff;
    background: #141414;
    font-family: "Poppins", sans-serif;
    text-transform: initial;
   /* font-style: italic;*/
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h2 {
    font-size: clamp(1rem, 3vw, 3rem);
    font-weight: normal;
    text-align: center;
    letter-spacing: 2px;
    color: #ccc;
    white-space: nowrap;
}

.first {
    overflow: hidden;
}

.libertinus-sans-regular {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.home-heading {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    overflow: hidden; /* This will clip any rotated overflow */
    pointer-events: none;
}

.home-heading2 {
    top: 30%;
    width: 35%;
    float: right;
    position: relative;
    color: #fff;
    margin-right: 10%;
    opacity: 0;
    display: none; /* Start hidden */
    transition: opacity 0.5s ease;
    font-family: "Libertinus Sans", sans-serif;
}
    .home-heading2 h2 {
        font-size: clamp(1rem, 3vw, 3rem);
        font-weight: normal;
        text-align: left;
        letter-spacing: 4px;
        white-space: nowrap;
        color: #fff!important;
        margin-bottom: 0px;
    }
    .home-heading2 p {
        font-size: clamp(1rem, 2vw, 2rem);
        text-align: left;
        letter-spacing: 1px;
        color: #fff !important;
        font-size: 23px;
        position: absolute;
    }
.home-heading h2 {
    font-size: 4vw;
    font-weight: normal;
    text-align: center;
    letter-spacing: 4px;
    color: #fff !important;
    width: 50vw;
    white-space: nowrap;
    margin: 0 auto;
}
.home-heading p {
    font-size: clamp(1rem, 2vw, 2rem);
    text-align: center;
    letter-spacing: 1px;
    margin-right: -0.5em;
    color: #fff !important;
    width: 100vw;
    font-size: 20px;
}
.site-header.scrolled {
    background-color: rgb(0 0 0 / 56%); /* White with slight transparency */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24rem;
    background: transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px); 
    /* optional blur effect */
}
/* Header Styles */
.logo {
    /* Ensures logo stays left */
    flex: 0 0 auto;
     z-index: 9999;
}
.logo img {
    height: 50px;
   
}
.mega-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 5px;
}
nav {
    display: flex;
    align-items: center;
}
.wave-text{
        text-transform: uppercase;
}
ul.menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

    ul.menu li a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
       
    }

        ul.menu li a:hover {
            color: #fff;
        }

.menu li {
    position: relative;
}

.dropdown {
    display: none;
}
.dropdown.show {
    display: block;
}

    .menu li ul.dropdown {
        position: absolute;
        top: 100%;
        left: 0px;
        background: #1a1a1a;
        padding: 0.5rem 0;
        border-radius: 8px;
        min-width: 240px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        
    }

    .menu li:hover ul.dropdown {
        opacity: 1;
        visibility: visible;
    }

    .menu li ul.dropdown li {
        padding: 0;
        list-style: none;
    }

        .menu li ul.dropdown li a {
            display: block;
        }

/* Hamburger */
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 193, 7, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.service-highlight h5 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.service-highlight p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
     text-align: center;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Submenu Styles (keeping for backward compatibility) */
.menu-item-has-children {
    position: relative;
}

.submenu-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.menu-item-has-children.active .submenu-icon {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smart positioning for submenus to prevent overflow */
.menu-item-has-children {
    position: relative;
}

/* Right-aligned submenu for items near the right edge */
.menu-item-has-children.submenu-right .submenu {
    left: auto;
    right: 0;
}

/* Center-aligned submenu for items in the middle */
.menu-item-has-children.submenu-center .submenu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.menu-item-has-children.submenu-center:hover .submenu,
.menu-item-has-children.submenu-center.active .submenu {
    transform: translateX(-50%) translateY(0);
}

.menu-item-has-children:hover .submenu,
.menu-item-has-children.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
    margin: 0;
}

.submenu li a {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #fff;
    transform: translateX(5px);
}

/* Submenu arrow */
.submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.9);
}

/* Right-aligned submenu arrow */
.submenu-right .submenu::before {
    left: auto;
    right: 20px;
}

/* Center-aligned submenu arrow */
.submenu-center .submenu::before {
    left: 50%;
    transform: translateX(-50%);
}

/* Ensure submenu stays within viewport */
.submenu {
    max-width: calc(100vw - 40px);
    overflow: hidden;
    word-wrap: break-word;
}

/* Handle very long submenu items */
.submenu li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.menu-toggle {
    /* Ensures menu-toggle stays right */
    flex: 0 0 auto;
    margin-left: auto;
}

/* Hide mobile menu toggle on desktop */
.menu-toggle {
    display: none;
    }



.wave-text span {
    display: inline-block;
    transition: transform 0.4s ease;
}

.wave-text:hover span {
    animation: wave 0.8s ease forwards;
}
    /* Adjust delays for each letter */
    .wave-text:hover span:nth-child(1) {
        animation-delay: 0s;
    }

    .wave-text:hover span:nth-child(2) {
        animation-delay: 0.07s;
    }

    .wave-text:hover span:nth-child(3) {
        animation-delay: 0.14s;
    }

    .wave-text:hover span:nth-child(4) {
        animation-delay: 0.21s;
    }

    .wave-text:hover span:nth-child(5) {
        animation-delay: 0.28s;
    }

    .wave-text:hover span:nth-child(6) {
        animation-delay: 0.35s;
    }

    .wave-text:hover span:nth-child(7) {
        animation-delay: 0.42s;
    }

    .wave-text:hover span:nth-child(8) {
        animation-delay: 0.49s;
    }

@keyframes wave {
    0% {
        transform: translateY(0);
    }

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

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



a {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}
section {
  height: 100vh;
  width: 100%;
  top: 0;
  position: fixed;
  visibility: hidden;
}
section .outer,
section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
section .bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}
section .bg h2 {
  z-index: 2;
}

/* Video Background Styles */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8; /* Adjust opacity as needed */
}

/* Alternative video styles */
.video-bg.blur {
  filter: blur(2px);
}

.video-bg.grayscale {
  filter: grayscale(100%);
}

.video-bg.slow-motion {
  animation: slowMotion 20s infinite;
}

@keyframes slowMotion {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Video overlay for better text readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* When video is present, remove background image */
.second .bg:has(.video-bg) {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 100%
    );
}

.fifth .bg {
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    url("https://cms.axellepasquier.com/uploads/xlarge_Cover_Vivre_Yeres_1951fd9f34.jpg");
  background-position: 50% 45%;
}

.section-heading, .section-para {
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px;
    color: #fff;
}
.section-heading{
font-family: "Libertinus Sans", sans-serif;
text-transform: uppercase;
font-size: 4vw;
position: relative;
color: #fff;

}
.para h2{
	text-align:left;
	font-size:22px;
	margin-bottom:0px;
}
.para p{
	margin-top:0px;
}
/* Text Glow Effect */
@keyframes textGlow {
  0% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 255, 255, 0.3),
                 0 0 40px rgba(255, 255, 255, 0.1);
  }
  100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.5),
                 0 0 50px rgba(255, 255, 255, 0.3),
                 0 0 60px rgba(255, 255, 255, 0.1);
  }
}

/* Additional text effects */
.section-heading.typing-effect {
  overflow: hidden;
  border-right: 3px solid #fff;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #fff; }
}

/* Gradient text effect */
.section-heading.gradient-text {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 3D text effect */
.section-heading.three-d {
  color: #fff;
  text-shadow: 
    0 1px 0 #ccc,
    0 2px 0 #c9c9c9,
    0 3px 0 #bbb,
    0 4px 0 #b9b9b9,
    0 5px 0 #aaa,
    0 6px 1px rgba(0,0,0,.1),
    0 0 5px rgba(0,0,0,.1),
    0 1px 3px rgba(0,0,0,.3),
    0 3px 5px rgba(0,0,0,.2),
    0 5px 10px rgba(0,0,0,.25),
    0 10px 10px rgba(0,0,0,.2),
    0 20px 20px rgba(0,0,0,.15);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.section-heading i {
  font-size: 3rem;
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-heading i.fa-github-alt {
  font-size: 3.2rem;
}
.section-para {
    font-size: 1rem;
}
    .tour {
        background: #000;
        height: 100vh;
        margin: 0;
    }
.image-container {
    height: 60rem;
    position: relative;
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

canvas {
    width: 100%;
}

.bg.one .tour {
position: absolute;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.side-text{
    margin-left: 25px;
}
.slider-text{
    margin-bottom: 80px;
}

/* Section Navigation Styles */
.section-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.section-indicator.active {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

/* Section visibility control */
section {
    transition: visibility 0.3s ease;
}

section.hidden {
    visibility: hidden;
    opacity: 0;
}

section.visible {
    visibility: visible;
    opacity: 1;
}

/* Enhanced section animations */
.section-heading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-heading.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slider-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slider-text.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.side-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.side-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes submenuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/***Hover on image ***/
.portfolio-showcase {
            min-height: 100vh;
            position: relative;
            padding: 80px 0;
        }

   

        .lv2-space {
            display: block;
            height: 100px;
        }

        .listv2-project {
            margin-bottom: 60px;
            position: relative;
        }

        .listv2-project a {
            text-decoration: none;
            color: inherit;
            display: block;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .listv2-project a:hover {
            border-bottom-color: rgba(255, 255, 255, 0.3);
        }

        .listv2-project .title {
            font-size: 3rem;
            font-weight: 100;
            line-height: 1.1;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .listv2-project a:hover .title {
            color: #ffffff;
            transform: translateX(20px);
        }

        .listv2-project .category {
            font-size: 1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }

        .listv2-project a:hover .category {
            color: rgba(255, 255, 255, 0.8);
            transform: translateX(20px);
        }

        .project-image {
            display: none;
        }

        .lv2-images {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1000;
        }

        .floating-image {
            position: absolute;
            width: 400px;
            height: 300px;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .floating-image.active {
            opacity: 1;
            transform: scale(1);
        }

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

        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background-color: #ffffff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }

        .custom-cursor.hover {
            transform: scale(2);
        }


/* Container */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: "Libertinus Sans", sans-serif;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4ecdc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    font-family: "Libertinus Sans", sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4ecdc4;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Portfolio Section */
.portfolio-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.2rem;
    font-family: "Libertinus Sans", sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    gap: 2rem;
}

/* Enhanced List V2 Project Styles */
.project-content {
    position: relative;
    z-index: 2;
}


.listv2-project .category {
    font-size: 1rem;
    color: #4ecdc4;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.project-description {
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
}

.project-description p {
    margin: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 0rem;
    align-items: center;
}
    .about-content h2, .skills-content h2, .project-content h2,
    .contact-content h2 {
        color: #fff;
        font-size: 40px;
        white-space: pre-wrap;
        text-align: left;
        margin-top: 0px;
    }

.mycontent h2 {
    color: #fff;
    font-size: 40px;
    text-align: left;
    margin-top: 0px;
}
    .about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #4ecdc4;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
}

.feature h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
}
.column-1, .column-2, .column-3, .column-4{
    min-width:250px;
    text-align:left;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4ecdc4;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4ecdc4;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #4ecdc4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.fullscreen {
    position: relative;
    width: 100%;
    top: 5%;
    bottom: 0;
    height: 100vh;
}

.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh; /* adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}
.ceobanner {
    background-image: url('../images/AboutWOI/ceo/Dr.SudhaChoksi.webp');
}
.board-of-directors {
    background-image: url('../images/AboutWOI/board-of-directors/provide-mission.jpg');
}

.history {
    background-image: url('../images/AboutWOI/history/history.jpg');
}
.faq {
    background-image: url('../images/AboutWOI/faq/representFAQ.jpg');
}
.world-WOI {
    background-image: url('../images/AboutWOI/world-WOI/WOI.jpg');
}
.domestic-and-sexual-violence-services {
    background-image: url('../images/WhatWeDo/domestic-and-sexual-violence-services/domestic-and-sexual-violence-services.jpg');
}
.woi-child-care-services-and-programming {
    background-image: url('../images/WhatWeDo/woi-child-care-services-and-programming/woi-child-care-services-and-programming.jpg');
}
.woi-and-racial-justice {
    background-image: url('../images/WhatWeDo/woi-and-racial-justice/woi-and-racial-justice.jpg');
}
.stand-against-racism {
    background-image: url('../images/WhatWeDo/stand-against-racism/stand-against-racism.jpg');
}
.in-your-community {
    background-image: url('../images/WhatWeDo/in-your-community/in-your-community.jpg');
}
.advocacy-agenda {
    background-image: url('../images/advocacy-agenda/advocacy-agenda.jpg');
}
.act-now {
    background-image: url('../images/GetInvolved/act-now/act-now.jpg');
}
.ways-to-give {
    background-image: url('../images/GetInvolved/ways-to-give/ways-to-give1.jpg');
}
.partners {
    background-image: url('../images/GetInvolved/partners/ways-to-give2.jpg');
}
.blog {
    background-image: url('../images/Connect/blog/blog.jpg');
}
.media-center {
    background-image: url('../images/Connect/media-center/media-center.jpg');
}
.contact-us {
    background-image: url('../images/Connect/contact-us/contact-us.jpg');
}
.our-mission-in-action {
    background-image: url('../images/WhatWeDo/our-mission-in-action/our-mission-in-action.jpg');
}


.hero-banner1 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh; /* adjust as needed */
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    position: relative;
    z-index: 1;
}

    .hero-banner1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5); /* adjust 0.5 = darkness */
        z-index: 0;
    }

.hero-content {
    position: relative; /* makes text stay above overlay */
    z-index: 1;
}

    .hero-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* dark overlay */
        z-index: -1;
    }

.hero-content {
    z-index: 2;
    padding: 0.5rem;
    
}

    .hero-content h1 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
        font-family: 'Libertinus Sans', sans-serif;
    }
     .ceo h2, .mission h2, .rfq h2{
         font-size: 1.8rem;
         text-align: left;
         margin-bottom: 0px;
         letter-spacing: 0px;
     }
      .ceo p, .mission p, .sacism p, .rfq p{
        font-size: 1.2rem;
        text-align: left;
        margin-top: 0px;
        color: #c7c9d3;
       margin-top: 0px;
    }

    .hero-content p {
        font-size: 1.3rem;
        color: #c7c9d3;
        
    }   

/* Hero */
main {
    overflow-x: hidden;

}
/* Stats */
.stats, .about, .skills, .project, .contact, .content, .front-blog-list, .ceo, .rfq, .worldWOI {
    padding-top: 50px;
    padding-bottom: 50px;
}

.stats-list {
    display: grid;
    gap: 15px;
    padding-left: 0px;
}

.stats-card {
    background: #303030;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transition: var(--transition-1);
}

    .stats-card:is(:hover, :focus) {
        transform: translateY(-5px);
    }

    .stats-card .card-icon {
        background: #4ecdc4;
        width: 60px;
        height: 60px;
        display: grid;
        place-items: center;
        border-radius: 50%;
    }

        .stats-card .card-icon img {
            width: 70%;
            filter: invert(1);
        }

    .stats-card .card-title {
        width: calc(100% - 95px);
        color: #4ecdc4;
        text-align: center;
        font-weight: 400;
    }

        .stats-card .card-title strong {
            display: block;
            color: #fff;
            font-size: initial;
            line-height: 1.3;
            margin-top: 5px;
            letter-spacing: 1px;
        }

    .stats-card > ion-icon {
        color: var(--color-secondary);
    }

/* About */


.about-banner {
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 80px;
}

.about .btn {
    max-width: unset;
    width: 100%;
}

.about .btn-secondary {
    margin-bottom: 10px;
}

/* Skills */
.skills-content {
    margin-bottom: 50px;
}

.skills-toggle {
    background: #303030;
    position: relative;
    width: max-content;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 100px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    z-index: 1;
}

    .skills-toggle::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 5px;
        bottom: 5px;
        width: 93px;
        background: #4ecdc4;
        border-radius: 100px;
        transition: 0.25s ease-in-out;
        z-index: -1;
    }

    .skills-toggle.active::before {
        left: 92px;
        width: 93px;
    }

.toggle-btn {
    color: #fff;
    padding: 5px 25px;
    transition: 0.25s ease-in-out;
}

    .toggle-btn.active {
        color: #fff;
    }

.skills-box.active .skills-list, .skills-box .tools-list {
    display: none;
}

.skills-box .skills-list, .skills-box.active .tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    animation: fadeIn .5s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.skills-card {
    position: relative;
    background: #303030;
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    cursor: help;
}

    .skills-card:hover .tooltip {
        transform: translateY(0);
        opacity: 1;
    }

.tooltip {
    position: absolute;
    top: -48px;
    background: #4ecdc4;
    min-width: max-content;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
    z-index: 1;
}

/* Projects */
.project-list{
    padding-left: 0px;
}
.project-list > li {
    margin-bottom: 15px;
    list-style:none;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 2px 4px 6px hsla(0, 0%, 0%, 0.2);
}
.card-banner{
    margin:0px;
}
    .card-banner img {
        display: block;
        width: 100%;
        border-radius: 18px;
    }

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: 0.25s ease-in-out;
}

    .project-card:is(:hover, :focus)::after {
        background: hsla(0, 0%, 100%, 0.1);
        backdrop-filter: blur(.5px);
    }

    .project-card .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
    }

    .project-card .card-title {
        margin-bottom: 10px;
    }

.project-card :is(.card-title, .publish-date) {
    background: #1f1f1f;
    padding: 6px 12px;
    width: max-content;
    box-shadow: 10px 10px 40px hsla(0, 0%, 0%, 0.4);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.25s ease-in-out;
}

.project-card .publish-date {
    font-size: 0.813rem;
    color: #fff;
    transition-delay: 0s;
}

    .project-card:is(:hover, :focus) :is(.card-title, .publish-date) {
        transform: translateY(0);
        opacity: 1;
    }

    .project-card:is(:hover, :focus) .publish-date {
        transition-delay: 0.1s;
    }

.load-more {
    font-size: 1.4rem;
    color: #4ecdc4;
    text-decoration: underline;
    margin-inline: auto;
    background: transparent;
    border: none;
}

/* Contact */
.contact {
    padding-block: var(--section-padding);
}

.contact-content {
    margin-bottom: 50px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;    
}

.contact-item-icon {
    font-size: 25px;
    color: var(--color-primary);
}

    .contact-item-icon ion-icon {
        --ionicon-stroke-width: 40px;
    }
.contact-list {
    padding: 0px;
    margin: 0px;
}
.contact-list li{
    margin-bottom:5px;
}

.contact-item-title {
    margin-bottom: 1px;
    font-weight: 500;
    margin-top: 5px;
}

.contact-list-item .contact-info {
    color: var(--color-secondary);
    line-height: 1.6;
    transition: var(--transition-1);
}

.contact-info:not(address):is(:hover, :focus) {
    color: var(--color-primary);
}

.contact-social-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-inline: 40px;
    padding:0px;
}

.contact-social-link {
    position: relative;
    background: var(--color-primary);
    color: var(--bg-primary);
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: var(--transition-1);
}

    .contact-social-link:is(:hover, :focus) {
        background: var(--raw-seinna);
        color: var(--white);
    }

        .contact-social-link:is(:hover, :focus) .tooltip {
            transform: translateY(0);
            opacity: 1;
        }

.contact-form {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--radius-12);
    box-shadow: var(--shadow-1);
}

.form-wrapper {
    margin-bottom: 25px;
}

.form-label {
    color: var(--color-primary);
    font-size: var(--fs-7);
    font-family: var(--ff-poppins);
    margin-bottom: 8px;
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
}

.input-field {
    background: var(--input-bg);
    color: var(--raw-seinna);
    padding: 10px;
    padding-left: 40px;
    border-radius: var(--radius-12);
    transition: var(--transition-1);
}

.input-wrapper ion-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--color-secondary);
    font-size: 20px;
    transition: var(--transition-1);
}

textarea.input-field {
    min-height: 60px;
    height: 120px;
    max-height: 200px;
    resize: vertical;
}

.input-field:focus {
    outline: 1px solid;
}

    .input-field:focus + ion-icon {
        color: var(--raw-seinna);
    }

.contact .btn-primary {
    max-width: unset;
    width: 100%;
    background: var(--color-primary);
    color: var(--bg-primary);
}

/* Footer */

.footer {
    text-align: center;
}

    .footer .logo {
        margin-bottom: 15px;
    }

.copyright {
    line-height: 1.6;
}

    .copyright a {
        font-family: var(--ff-turret);
        display: inline-block;
        color: var(--raw-seinna);
    }

.go-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition-1);
    z-index: 2;
}
    .go-top.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

.stats-list li, .skills-list li, .contact-social-list li {
    list-style: none;
}
.btn-secondary {
    background: #4ecdc4;
    border-color: #4ecdc4;
    color: #000;
}
.btn {
    max-width: max-content;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 25px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: 0.25s ease-in-out;
}
:is(a, button, select) {
    outline-color: #4ecdc4;
    outline-offset: 3px;
}

.btn-primary:is(:hover, :focus) {
    background: #fff;
    color: #000;
}

.btn-primary {
    border-color: #fff;
    background: transparent;
    color: #fff;
}
.section-text {
    color: #9e9e9e;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}
.skills-toggle button {
    background: none;
    border: none;
    font: inherit;
}
.contact-social-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-inline: 40px;
    padding: 0px;
}
.contact .links {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0px;
}
.column-3 ul, .column-4 ul, .column-2 ul {
    padding-left: 25px;
    margin-top: 5px;
}
.bg .slider-text,
.bg .section-heading,
.bg .side-text {
    display: inline-block;
    margin-right: 10px; /* space between inline items */
    vertical-align: middle;
}

/**  BLOG CSS **/
.btn-Fx {
    overflow: hidden;
    color: #050c2a;
    display: inline-block;
    position: relative;
    font-size: 1rem;
    padding: 10px 16px;
    border-radius: 5px;
    box-shadow: 0px 18px 20px rgb(153 172 243 / 8%), 0px 10px 14px rgb(178 187 207 / 6%), 0px 8px 9px rgb(213 213 213 / 4%);
}

    .btn-Fx span {
        display: block;
        position: relative;
        z-index: 10;
        font-weight: 700;
    }

    .btn-Fx:hover {
        color: #fff;
    }

    .btn-Fx:before {
        content: "";
        position: absolute;
        background-color: #3e66f9;
        width: 120%;
        height: 0;
        padding-bottom: 120%;
        top: -110%;
        left: -10%;
        border-radius: 50%;
        transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    }

    .btn-Fx:hover:before {
        transform: translateZ(0) scaleZ(1);
        transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    }

    .btn-Fx:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #3e66f9;
        transform: translate3d(0, -101%, 0);
        transition: transform 0.4s;
    }

    .btn-Fx:hover:after {
        transform: translateZ(0);
        transition-duration: 0.05s;
        transition-delay: 0.4s;
        transition-timing-function: linear;
    }



.front-blog {
    width: 100%;
}

.front-blog-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: stretch;
}

.front-blog-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .front-blog-top .dec-title {
        color: #4d515e;
    }

    .front-blog-top .btn-Fx {
        text-transform: uppercase;
        font-size: 0.9rem;
        padding: 8px 15px;
    }

.article-blog {
    color: #4d515e;
    position: relative;
    width: 100%;
    height: 330px;
    border-radius: 0.6rem;
}

.article__thumbnail {
    position: relative;
    height: calc(100% - 140px);
    width: 100%;
    background-size: cover;
    background-position-x: center;
    background-color: #2151b1;
    background-blend-mode: lighten;
    opacity: 1;
    transition: all 0.6s ease-out;
    border-radius: inherit;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.article-blog:hover .article__thumbnail {
    opacity: 1;
    background-color: transparent;
}

.article__body {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 148px;
    padding: 20px;
    transition: all 0.4s;
    z-index: 2;
    overflow: hidden;
    border-radius: inherit;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.article-blog:hover .article__body {
    backdrop-filter: blur(50px);
    height: 250px;
}

.article__category {
    display: block;
    width: 100%;
    transition: color 0.4s;
    font-size: 14px;
    letter-spacing: 0.8px;
}

.article__title {
    padding-bottom: 10px;
    max-height: 65px;
    overflow: hidden;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
    color:#fff;
}

.article__excerpt {
    opacity: 0;
    transition: opacity 0.4s;
    line-height: 1.6;
    font-size: 14px;
    color: #fff;
}

.article__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 20px 20px 20px;
    line-height: inherit;
    height: 42px;
    width: 100%;
    color:#fff;
}

    .article__footer .footer__readmore {
        position: relative;
        display: block;
        height: 22px;
        float: right;
        overflow: hidden;
    }

    .article__footer .footer__readmore-text {
        display: inline-block;
        padding-right: 5px;
        transform: translateY(30px);
        color: inherit;
        vertical-align: middle;
        transition: all 0.4s;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .article__footer .footer__readmore-arrow {
        display: inline-block;
        height: 100%;
    }

        .article__footer .footer__readmore-arrow svg {
            transition: fill 0.4s;
        }

.article-blog:hover {
    color: var(--medium-contrast-color);
}

    .article-blog:hover .footer__readmore-text {
        transform: translateY(-2px);
    }

    .article-blog:hover .article__excerpt {
        opacity: 1;
    }

@media (max-width: 1100px) {
    .front-blog-list > a:last-child {
        display: none;
    }
}

@media (max-width: 700px) {
  
    .front-blog-list {
        flex-direction: column;
    }

    .article__thumbnail {
        height: 220px;
        background-position: bottom;
    }

    .article__body {
        position: absolute;
 
        backdrop-filter: blur(50px);
    }

    .article__excerpt {
        max-height: auto;
        overflow: visible;
    }
}

/***** History ******/
#header {
    position: relative;
    padding-top: 10vh;
    height: 50%;
    width: 100%;
    background: #900;
}

#content {
    min-height: 100%;
}

    #content:after {
        content: '';
        display: block;
    }

#footer {
    height: 148px;
    background: #900;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.4);
    text-align: center;
    color: white;
}

    #footer > a {
        line-height: 148px;
    }

#header:after {
    content: '';
    position: absolute;
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #900;
    left: calc(50% - 10px);
    z-index: 1
}

.timeline-content h2 {
    font-size: 1.3em;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding-bottom: 5px;
    text-align: left;
    letter-spacing: 0px;
}

#timeline {
    position: relative;
    margin: 0 auto;
}
.mission{
    padding-top: 50px;
}
.mission h2{

}
    #timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: calc(50% + 5px);
        height: 89.5%;
        width: 4px;
        background: #4ecdc4;
    }

.timeline-img {
    position: absolute;
    left: calc(50% - 24px);
    width: 60px;
    height: 60px;
    border: 6px solid #d7f1ef45;
    border-radius: 50%;
    background: #4ecdc4;
    box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, 0.1), 0 0 2px 1px rgba(0, 0, 0, 0.1);
}

    .timeline-img.hidden, .timeline-content.hidden {
        visibility: hidden;
    }

    .timeline-img.show {
        visibility: visible;
        animation: bounce 0.6s;
    }

.timeline-content.show {
    visibility: visible;
    animation: slide 0.6s;
}

.timeline-block {
    margin: 2em 0;
}

    .timeline-block:after {
        content: '';
        display: table;
        clear: both;
    }

    .timeline-block:nth-child(even) .timeline-content {
        float: right;
        margin-right: -20px;
    }

.date {
    position: absolute;
    top: 15px;
    font-size: 1.2em;
    color: #fff;
}

.timeline-block:nth-child(even) .date {
    left: -200px;
}

.timeline-block:nth-child(odd) .date {
    right: -200px;
}

.timeline-block:nth-child(even) .timeline-content.show {
    animation: slide-inverse 0.6s;
}

.timeline-content {
    position: relative;
    width: 560px;
    padding: 15px;
    background: rgb(48, 48, 48);
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05)
}

    .timeline-content:after {
        content: '';
        position: absolute;
        top: 25px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }

.timeline-block:nth-child(odd) .timeline-content:after {
    left: 100%;
    border-left: 10px solid #FFF8F0;
}

.timeline-block:nth-child(even) .timeline-content:after {
    right: 100%;
    border-right: 10px solid #FFF8F0;
}

#credits-sources-container {
    display: none;
    padding-top: 40px;
}

@media screen and (max-width: 1250px) {

    img {
        display: none;
    }

    #timeline {
        width: 100%;
    }

        #timeline:before {
            left: 50px;
        }

    .timeline-img {
        left: 16px;
    }

    .timeline-content {
        float: none !IMPORTANT;
        left: 120px;
        width: calc(100% - 200px);
        min-width: 450px;
    }

        .timeline-content.show {
            animation: slide-inverse 0.6s;
        }

        .timeline-content:after {
            right: 100% !IMPORTANT;
            left: auto !IMPORTANT;
            border-right: 10px solid #FFF8F0;
            border-left: none !IMPORTANT
        }

    .date {
        right: 35px !IMPORTANT;
        left: auto !IMPORTANT;
        top: 35px !IMPORTANT;
    }

    #header:after {
        left: 33px !IMPORTANT;
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-inverse {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

.lh-title{
    font-weight:100;
}

/**** FAQ ****/

.faq-header {
    background: url("images/faq-banner.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

    .faq-header h1 {
        font-size: 40px;
        margin: 0;
    }



.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 100;
    background: #333333;
    transition: background 0.3s;
    cursor: pointer;
}

    .faq-question:hover {
        background: #333333;
    }

.faq-answer {
    display: none;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    max-height: 500px;
    padding: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s;
}
.faq-answer h3{
    font-weight: 600;
}

/* Act Now – Black Form Section */
.act-form-section {
    background: rgb(48, 48, 48);
    color: #fff;
    padding: 25px;
}


.act-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}

.act-form-title {
    margin: 0 0 10px 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.act-form-subtitle {
    margin: 0 0 24px 0;
    opacity: 0.85;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

    .form-grid .full {
        grid-column: 1 / -1;
    }

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-field label {
        font-size: 14px;
        letter-spacing: .2px;
    }

    .form-field input,
    .form-field textarea {
        background: #3a3a3a;
        color: #fff;
        border: 1px solid #3a3a3a;
        border-radius: 10px;
        padding: 12px 14px;
        outline: none;
        transition: border-color .2s, box-shadow .2s;
    }

        .form-field input::placeholder,
        .form-field textarea::placeholder {
            color: #9aa0a6;
        }

        .form-field input:focus,
        .form-field textarea:focus {
            border-color: #6ea8fe;
            box-shadow: 0 0 0 3px rgba(110,168,254,.15);
        }

.act-btn {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

.act-btn-primary {
    background: #ffffff;
    color: #000;
    box-shadow: 0 8px 20px rgba(255,255,255,.08);
}

    .act-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(255,255,255,.12);
    }

/* Tab Section Styles */
.tabs-section {
    background: #333333;
    color: #fff;
    padding: 20px 30px;
    margin-bottom:50px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

    .tab-btn.active,
    .tab-btn:hover {
        background: #fff;
        color: #000;
    }

.tab-content {
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
        animation: fadeIn 0.4s ease-in-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.tab-panel h1{
    font-weight: 100;
    text-align:center;
}

.tab-panel h3 {
    font-weight: 100;
}

.media-intro, .media-highlights, .media-connect {
    padding: 60px 20px;
    text-align: center;
}

    .media-intro p {
        max-width: 700px;
        margin: 20px auto;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .media-highlights .highlight-grid {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

.highlight-card {
    flex: 1 1 300px;
    background: #333333;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

    .highlight-card:hover {
        transform: translateY(-5px);
    }

    .highlight-card img {
        width: 60px;
        background: #4ecdc4;
        padding: 11px;
        border-radius: 50%;
    }

.media-connect .btn {
    display: inline-block;
    padding: 12px 25px;
    background: #e63946;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

    .media-connect .btn:hover {
        background: #d62828;
    }


/***New css******/
.tab-buttons {
    display: flex;
    justify-content: center;
}

    .tab-buttons button {
        flex: 1;
        padding: 15px;
        background: #222;
        border: none;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s;
    }

        .tab-buttons button.active,
        .tab-buttons button:hover {
            background: #4ecdc4;
        }

.tab-content {
    display: none;
    background: #111;
    padding: 20px;
    border-radius: 10px;
}

    .tab-content.active {
        display: block;
    }

#services h2, #violence h2, #policy h2, #childcare h2, #enrichment h2 {
    text-align: left;
    margin: 0px;
    font-size: 20px;
}

#services h3, #childcare h3, #enrichment h3 {
    margin: 20px 0px 0px 0px;
    font-weight: 500;
    font-size: 20px;
}

#services p, #childcare p, #enrichment p {
    margin: 0px;
}

.tabs {
    margin-bottom: 40px
}