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

body {
    font-family: 'Roboto Slab', serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Enhanced Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: scale(0);
    opacity: 0;
    animation: loaderPulse 3s ease-in-out infinite;
}

.loader-inner1 {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: loaderInner1 3s ease-in-out infinite 0.5s;
}

.loader-inner2 {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    transform: scale(0);
    animation: loaderInner2 3s ease-in-out infinite 1s;
}

.loader-logo {
    width: 60px;
    height: 60px;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    animation: logoAppear 3s ease-in-out infinite 1.5s;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(0); opacity: 0; }
    20%, 80% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); }
}

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

@keyframes loaderInner2 {
    0%, 100% { transform: scale(0); }
    40%, 60% { transform: scale(1); }
}

@keyframes circleAppear {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50%, 90% { opacity: 1; transform: scale(1) rotate(360deg); }
}

.loader-circle {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: circleAppear 3s ease-in-out infinite 1.5s;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    text-transform: uppercase;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    height: 40px;
    width: auto;
}

.logo-center {
    height: 50px;
    width: auto;
}

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

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

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    margin-top: 2rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
}

.portfolio-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    border-radius: 24px;
    font-family: 'Roboto Slab', serif;
    text-decoration: none;
}

.portfolio-btn:hover {
    background: #fff;
    color: #000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.social-icon {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #111;
    text-align: center;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #fff;
    line-height: 1.2;
}

.team-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
}

.team-btn:hover {
    background: #fff;
    color: #000;
}

/* Project Section */
.project-section {
    padding: 5rem 0;
    background: #000;
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.project-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-item.reverse .project-image {
    order: 2;
}

.project-item.reverse .project-content {
    order: 1;
}

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 2rem 0;
}

.project-name {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2.5rem;
    text-align: left;
}

.view-project-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
}

.view-project-btn:hover {
    background: #fff;
    color: #000;
}

/* Client Section */
.client-section {
    padding: 5rem 0;
    background: #111;
}

.headeing-text h2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 68px;
    color: #fff;
    display: block;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.headeing-subheading-text {
    color: #ccc;
    line-height: 40px;
    text-align: center;
    font-weight: 200;
    font-size: 20px;
    margin-bottom: 3rem;
}

.client-slider {
    overflow: hidden;
    margin: 3rem 0;
    position: relative;
}

.client-track {
    display: flex;
    animation: slideRight 20s linear infinite;
    width: calc(200% + 40px);
}

.client-track:hover {
    animation-play-state: paused;
}

.client-item {
    flex: 0 0 200px;
    margin: 0 20px;
    padding: 30px;
    background-color: #ddd;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 200ms cubic-bezier(.785, .135, .15, .86);
}

.client-item:hover {
    transform: translateY(-5px);
}

.client-item img {
    width: 100px;
    height: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-item:hover img {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.view-clients-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
}

.view-clients-btn:hover {
    background: #fff;
    color: #000;
}

/* Clients Page Styles */
.clients-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.clients-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.clients-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.clients-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #111;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.testimonial-author span {
    color: #ccc;
    font-size: 0.95rem;
}

/* Clients Gallery Section */
.clients-gallery-section {
    padding: 5rem 0;
    background: #000;
}

.clients-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo-item {
    background: #ddd;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    background: #fff;
}

.client-logo-item img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    opacity: 1;
    filter: grayscale(0);
}

/* CTA Section */
.clients-cta-section {
    padding: 5rem 0;
    background: #111;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Founders Section */
.founders-section {
    padding: 5rem 0;
    background: #000;
}

.founders-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.3;
}

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

.founders-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.founders-circles {
    position: relative;
    width: 350px;
    height: 250px;
    margin: 0 auto 3rem;
}

.founder-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #333;
    transition: all 0.3s ease;
}

.founder-circle:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.main-founder {
    top: 0;
    left: 0;
    z-index: 2;
}

.co-founder {
    top: 40px;
    right: 0;
    z-index: 1;
}

.founder-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founders-names {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.founder-name-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    flex: 1;
    transition: all 0.3s ease;
}

.founder-name-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.founder-name-card h4 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 8px 0;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    animation: nameShine 8s infinite;
}

.founder-name-card h4::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes nameShine {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

.founder-name-card p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    font-weight: 300;
}

.founders-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ddd;
    font-style: italic;
    border-left: 3px solid #fff;
    padding-left: 2rem;
    margin: 0;
    max-width: 800px;
    text-align: left;
}

/* Founder Section */
.founder-section {
    padding: 5rem 0;
    background: #000;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #333;
}

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

.founder-name {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.founder-designation {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.founder-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    font-style: italic;
    border-left: 3px solid #fff;
    padding-left: 2rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #111;
    padding: 4rem 0 2rem;
    color: #ccc;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 2rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 1rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #fff;
    padding-left: 10px;
}

.arrow {
    margin-right: 10px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.footer-link:hover .arrow {
    transform: translateX(5px);
}

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

.footer-social-icon {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item {
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
}

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

.footer-address {
    margin-bottom: 2rem;
}

.footer-address p {
    line-height: 1.6;
    margin: 0;
}

.footer-cta h3 {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.get-started-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
}

.get-started-btn:hover {
    background: #fff;
    color: #000;
}

.footer-divider {
    height: 1px;
    background: #333;
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.developer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* Team Page Styles */
.team-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.team-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.team-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.breadcrumb {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

/* Introduction Section */
.team-intro {
    padding: 5rem 0;
    background: #111;
    text-align: center;
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.intro-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-text {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 3rem;
    font-style: italic;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Staff Sections */
.founder-staff-section,
.associates-section,
.team-members-section {
    padding: 4rem 0;
    background: #000;
}

.associates-section {
    background: #111;
}

.staff-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-grid {
    max-width: 400px;
    margin: 0 auto;
}

/* Team members grid with smaller spacing */
.associates-section .staff-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.staff-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-5px);
}

.staff-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #333;
    transition: border-color 0.3s ease;
}

/* Smaller images for team members */
.associates-section .staff-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 1rem;
}

.staff-member:hover .staff-image {
    border-color: #fff;
}

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

.staff-name {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.staff-designation {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.staff-degree {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #000;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #fff;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #fff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #aaa;
    line-height: 1.6;
    margin: 0;
}

/* Projects Page Styles */
.projects-hero,
.category-hero,
.project-detail-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.projects-hero-bg,
.category-hero-bg,
.project-detail-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.projects-hero-content,
.category-hero-content,
.project-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.projects-hero-title,
.category-hero-title,
.project-detail-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Projects Grid */
.projects-grid-section {
    padding: 5rem 0;
    background: #000;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 3rem 2rem 2rem;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.view-projects-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
}

.view-projects-btn:hover {
    background: #fff;
    color: #000;
}

/* Category Projects */
.category-projects-section {
    padding: 5rem 0;
    background: #111;
}

.category-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-project-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.category-project-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-project-card:hover .category-project-image img {
    transform: scale(1.05);
}

.category-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-project-card:hover .category-project-overlay {
    transform: translateY(0);
}

.category-project-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.view-project-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    text-decoration: none;
    display: inline-block;
}

.view-project-btn:hover {
    background: #fff;
    color: #000;
}

/* Project Detail */
.project-info-section {
    padding: 4rem 0;
    background: #111;
}

.project-details {
    max-width: 1000px;
    margin: 0 auto;
}

.project-info-table-container {
    margin-bottom: 3rem;
    overflow-x: auto;
}

.project-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
}

.project-info-table th {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

.project-info-table td {
    color: #ccc;
    font-size: 1rem;
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid #333;
}

.project-info-table td:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .project-info-table {
        font-size: 0.9rem;
    }
    
    .project-info-table th,
    .project-info-table td {
        padding: 0.8rem 0.5rem;
    }
}

.project-description {
    max-width: 800px;
    margin: 0 auto;
}

.project-description h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.project-description p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Project Gallery */
.project-gallery-section {
    padding: 5rem 0;
    background: #000;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

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

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

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-align: left;
}

.contact-text p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #333;
}

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

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

.form-image {
    border-radius: 15px;
    overflow: hidden;
}

.form-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #fff;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: 'Roboto Slab', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.submit-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    width: 100%;
}

.submit-btn:hover {
    background: #fff;
    color: #000;
}

/* Video Section */
.video-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.video-section:hover .video-bg {
    filter: grayscale(0%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.video-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.play-video-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Roboto Slab', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.play-video-btn:hover {
    background: #fff;
    color: #000;
}

.play-icon {
    font-size: 1.2rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 60%;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #ccc;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(5px);
}

.success-popup.show {
    opacity: 1;
    animation: popupFadeIn 0.5s ease;
}

.popup-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px 50px 15px 50px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.7) rotate(-5deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #4CAF50;
    position: relative;
    overflow: hidden;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

.success-popup.show .popup-content {
    transform: scale(1) rotate(0deg);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.8s ease;
    position: relative;
    z-index: 2;
}

.success .popup-icon::before {
    content: '✓';
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    color: white;
    line-height: 80px;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    animation: checkPulse 2s infinite;
}

.error .popup-icon::before {
    content: '✕';
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-radius: 50%;
    color: white;
    line-height: 80px;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(244, 67, 54, 0.3);
}

.popup-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.popup-close {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Roboto Slab', serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    min-width: 120px;
}

.popup-close:hover {
    background: linear-gradient(135deg, #555, #777);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-family: 'Roboto Slab', serif;
    position: relative;
    z-index: 2;
}

@keyframes popupFadeIn {
    0% { opacity: 0; backdrop-filter: blur(0px); }
    100% { opacity: 1; backdrop-filter: blur(5px); }
}

@keyframes bounceIn {
    0% { transform: scale(0.3) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(-10deg); }
    70% { transform: scale(0.9) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* 404 Error Page */
.error-section {
    min-height: 80vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    position: relative;
}

.error-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
}

.error-shape {
    position: relative;
    width: 300px;
    height: 400px;
    background: #f5f5f5;
    border-radius: 0 50px 0 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.error-content {
    text-align: center;
    color: #333;
}

.error-number {
    font-size: 8rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Roboto Slab', serif;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Roboto Slab', serif;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 400px;
    font-family: 'Roboto Slab', serif;
}

.home-btn {
    background: #333;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Roboto Slab', serif;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: inline-block;
}

.home-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in {
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.5s; }
.fade-in:nth-child(2) { animation-delay: 1s; }
.fade-in:nth-child(3) { animation-delay: 1.5s; }

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

/* Content Sections */
.content-section {
    min-height: 100vh;
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .nav-center {
        position: static;
        transform: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 400;
    }
    
    .logo-center {
        height: 35px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .project-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .project-item.reverse .project-image,
    .project-item.reverse .project-content {
        order: unset;
    }
    
    .project-name {
        font-size: 2rem;
    }
    
    .project-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .portfolio-btn, .team-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .project-name {
        font-size: 1.8rem;
    }
    
    .project-description {
        font-size: 1rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    .headeing-text h2 {
        font-size: 30px;
        line-height: 40px;
    }
    
    .headeing-subheading-text {
        font-size: 16px;
        line-height: 30px;
    }
    
    .client-item {
        flex: 0 0 150px;
        margin: 0 10px;
        padding: 20px;
        min-height: 100px;
    }
    
    .client-item img {
        width: 80px;
    }
    
    .client-track {
        animation-duration: 15s;
    }
    
    .founders-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founder-profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founders-title {
        font-size: 2rem;
    }
    
    .founders-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founders-circles {
        width: 280px;
        height: 200px;
        margin: 0 auto 2rem;
    }
    
    .founder-circle {
        width: 130px;
        height: 130px;
    }
    
    .main-founder {
        top: 0;
        left: 10px;
    }
    
    .co-founder {
        top: 30px;
        right: 10px;
    }
    
    .founders-names {
        flex-direction: column;
        gap: 1rem;
    }
    
    .founder-name-card {
        padding: 1rem;
    }
    
    .founder-name-card h4 {
        font-size: 1.1rem;
    }
    
    .founder-name-card p {
        font-size: 0.9rem;
    }
    
    .founders-message {
        border-left: none;
        border-top: 3px solid #fff;
        padding-left: 0;
        padding-top: 1rem;
        font-size: 1.1rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-message {
        border-left: none;
        border-top: 3px solid #fff;
        padding-left: 0;
        padding-top: 1rem;
        text-align: left;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-left {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-cta h3 {
        font-size: 1.3rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .associates-section .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .staff-image {
        width: 200px;
        height: 200px;
    }
    
    .associates-section .staff-image {
        width: 150px;
        height: 150px;
    }
    
    .projects-hero-title,
    .category-hero-title,
    .project-detail-hero-title {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card {
        height: 400px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .category-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-info-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .loader-container {
        width: 250px;
        height: 250px;
    }
    
    .loader-logo {
        width: 40px;
        height: 40px;
    }
    
    .error-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .error-shape {
        width: 250px;
        height: 300px;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
}

/* ========================================
   HOMEPAGE SPECIFIC STYLES
   ======================================== */

/* Anniversary Confetti Animation */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

@keyframes confetti-fall-left {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(400px) translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes confetti-fall-right {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-400px) translateY(100vh) rotate(-720deg);
        opacity: 0;
    }
}

/* Hero Section Enhancements */
.hero-spacer {
    height: 200px;
}

.hero-content {
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-title, .portfolio-btn, .social-icons {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Text Animations */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Promotional Banner */
.banner-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateX(-120%) translateY(20px);
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    overflow: hidden;
}

.banner-container.show {
    transform: translateX(0) translateY(0);
}

.banner-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    color: #000000;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255,255,255,0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-close:hover {
    background: rgba(255,255,255,1);
    color: #000;
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .banner-container {
        display: none;
    }
}

/* ========================================
   CLIENTS PAGE SPECIFIC STYLES
   ======================================== */

/* Trust Rating Animation Section */
.clients-cta-section .rating-container {
    max-width: 600px;
    margin: 2rem auto;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.star {
    font-size: 3rem;
    color: #333;
    transition: color 0.8s ease;
    position: relative;
    overflow: hidden;
}

.star.filled:not(.half-star) {
    color: #ffd700;
}

.half-star.filled {
    background: linear-gradient(90deg, #ffd700 60%, #ffffff 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Roboto Slab', serif;
}

@media (max-width: 768px) {
    .stars-container {
        gap: 0.3rem;
    }
    
    .star {
        font-size: 2.5rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
}
/* ========================================
   TEAM PAGE SPECIFIC STYLES
   ======================================== */

/* Founder Section Pattern Background */
.founder-staff-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.founder-staff-section {
    position: relative;
    overflow: hidden;
}

.founder-staff-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 1;
}

.founder-staff-section .container {
    position: relative;
    z-index: 2;
}

.founder-grid .staff-member {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.founder-grid .staff-member:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}