:root {
    --primary-color: #FFFFFF;
    --secondary-color: #333333;
    --soft-gray: #F5F5F5;
    --font-family-primary: 'Open Sans', sans-serif;
    --font-family-heading: 'Poppins', sans-serif;
    --font-family-heading2: 'Montserrat ', sans-serif;
    --font-family-secondary: 'Roboto', sans-serif;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --btn-primary-color: #FECC00;
    --blue-color: #264796;
    --linear-gray-bg: linear-gradient(to right, #f7f7f7, #ffffff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Poppins font-face */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
}

/* Montserrat font-face */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}

/* Open Sans font-face */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
}

/* Roboto font-face */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
}

/* Example usage */
html,
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: var(--font-family-heading2) !important;
    font-size: 16px;
    /* Base font size for rem calculations */
    overflow-x: hidden;
    position: relative;
}

section:nth-of-type(even) {
    background-color: #f5f5f5;
    /* light gray */
}

/* Optional: to ensure odd sections are white explicitly */
section:nth-of-type(odd) {
    background-color: #ffffff;
    /* white */
}

.container {
    /* max-width: calc(100vw - 40px);
    margin: 0 auto; */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: var(--primary-color);
    box-shadow: var(--box-shadow);
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.logo img {
    height: 50px;
}

/* Navigation styles */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 400;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--btn-primary-color);
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
    transition: transform 0.3s ease;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active state - transform to cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* .overlay{
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
} */


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('/images/1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* animation: slideshow 18s infinite ease-in-out, zoom 18s infinite; */
    transition: background-image 1s ease-in-out;
    overflow: hidden;
    transform-origin: center;
    flex-wrap: wrap;
}

@keyframes slideshow {
    0% {
        background-image: url('../images/projects/ow-1.jpeg');
    }

    33% {
        background-image: url('../images/projects/ow-2.jpeg');
    }

    66% {
        background-image: url('../images/projects/ow-1.jpeg');
    }

    100% {
        background-image: url('../images/projects/ow-2.jpeg');
    }
}

@keyframes zoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    /* display: none; */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1rem;
    color: var(--primary-color);
    text-align: center;
    padding-top: 8rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        padding-bottom: 7rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}


/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

h2 {
    font-size: 2.25rem;
    /* 36px */
    margin-bottom: 3.125rem;
    /* 50px */
    text-align: center;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    max-width: 1100px;
}

.service-card {
    width: 200px;
    min-width: 160px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    font-weight: bold;
}

.service-card:hover {
    transform: scale(1.045);
}

.icon img {
    width: 150px;
    /* height: 56px; */
    object-fit: contain;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 0;
    text-align: center;
}

/* Additional styles */
.start-project-button {
    background-color: var(--btn-primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    /* Adjust padding */
    font-size: 1.1rem;
    /* Adjust font size */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 200;
    /* Ensure it is above other elements */
    display: none;
    /* Initially hidden */
}

.start-project-button:hover {
    background-color: var(--secondary-color);
}

/* Show button when scrolling down */
.show-button {
    display: block;
}

/* Responsive styles */
@media (max-width: 900px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 2000;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%) scale(0.98);
        transition:
            opacity 0.35s cubic-bezier(.4, 0, .2, 1),
            transform 0.35s cubic-bezier(.4, 0, .2, 1),
            visibility 0.35s;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0) scale(1);
    }

    .nav-menu a {
        font-size: 1.5rem;
        margin: 18px 0;
        color: #222;
        font-weight: 600;
        letter-spacing: 1px;
        transition: color 0.2s;
    }

    .nav-menu a:hover {
        color: var(--btn-primary-color);
    }

    .close-menu {
        position: absolute;
        top: 24px;
        right: 32px;
        font-size: 2.5rem;
        color: #222;
        cursor: pointer;
        font-weight: bold;
        z-index: 2100;
        transition: color 0.2s;
    }

    .close-menu:hover {
        color: var(--btn-primary-color);
    }

    .hamburger {
        display: flex;
        margin-left: 16px;
        z-index: 2101;
    }

    header .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
    }

    .right-menu {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .services {
        gap: 16px;
        max-width: 100%;
    }

    .service-card {
        width: 45vw;
        max-width: 320px;
        min-width: 140px;
        padding: 18px 8px 14px 8px;
    }
}

@media (max-width: 600px) {
    .container {
        width: 98%;
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }

    header .container {
        padding: 8px 5px;
    }

    .logo img {
        height: 38px;
        margin-bottom: 6px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 10px;
        font-size: 1.1rem;
        align-items: center;
    }

    .nav-menu a {
        padding: 4px 0;
    }

    .what-we-do {
        padding: 40px 0 20px 0;
    }

    .services {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .service-card {
        width: 90vw;
        max-width: 400px;
        min-width: 0;
        padding: 16px 6px 12px 6px;
    }
}

/* Additional media query for larger screens */
@media (min-width: 1200px) {
    /* .hero h1 {
        font-size: 4rem;
    } */
}

/* Attention animation for Contact Us */
.nav-menu .attention {
    position: relative;
    font-weight: 700;
    color: var(--btn-primary-color);
    transition: color 0.5s;
    display: inline-flex;
    align-items: center;
    /* animation: attentionBounce 2s ease-in-out infinite; */
}

.contact-icon {
    color: var(--btn-primary-color);
    margin-left: 5px;
    display: inline-block;
    animation: phoneRing 1.5s ease-in-out infinite;
    transform-origin: center;
}

@keyframes attentionBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-15deg);
    }

    60% {
        transform: rotate(7deg);
    }

    80% {
        transform: rotate(-7deg);
    }
}

/* Page Loader Overlay */
#page-loader {
    position: fixed;
    inset: 0;
    background: #0e0e0e;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    animation: fadeOut 1s ease 3s forwards;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: popIn 1s ease;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: rotateIn 2s infinite alternate;
}

.loader-typing {
    color: #ffffff;
    font-size: 1.3rem;
    margin-top: 1rem;
    /* font-family: 'Courier New', monospace; */
    border-right: 2px solid #fff;
    white-space: normal;
    text-align: center;
    overflow: hidden;
    min-width: 0;
    background: transparent;
    font-weight: bold;
    text-shadow: 0 2px 8px #000a, 0 0 2px #0002;
}

@keyframes rotateIn {
    0% {
        transform: rotate(-10deg) scale(1);
    }

    100% {
        transform: rotate(10deg) scale(1.05);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #0e0e0e;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.loader-logo {
    width: 180px;
    height: auto;
    animation: scalePulse 2s infinite;
}

@keyframes scalePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.loader-typing {
    color: #ffffff;
    font-size: 1.3rem;
    margin-top: 1rem;
    /* font-family: 'Courier New', monospace; */
    border-right: 2px solid #fff;
    white-space: normal;
    text-align: center;
    overflow: hidden;
    min-width: 0;
    background: transparent;
    font-weight: bold;
    text-shadow: 0 2px 8px #000a, 0 0 2px #0002;
}

/* Background strips */
.loader-strips {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    opacity: 0.5;
}

.strip {
    width: 20%;
    height: 100vh;
    background: #111;
    transform: translateY(0);
    /* No animation here! */
}

@keyframes stripUpVertical {
    to {
        transform: translateY(-100vh);
    }
}

/* Hero text and button initial state */
.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}



/* Animate in */
.hero-content.animate h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-content.animate p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-content.animate .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero .portfolio-image {
    position: absolute;
    bottom: 12%;
    right: 15%;
    animation: none;
    display: none;
}

@keyframes fall-down {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}

/* Modal styles for portfolio image viewer */
.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.portfolio-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    /* background-color: #111; */
    animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.portfolio-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.portfolio-modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
}

.portfolio-modal-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
    font-size: 3.5rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.portfolio-modal-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
}

.portfolio-modal-prev {
    left: 15px;
}

.portfolio-modal-next {
    right: 15px;
}


/* === Footer Styles === */
.site-footer {
    background-color: #fff;
    color: #333;
    /* font-family: var(--font-family-primary); */
    border-top: 1px solid #e0e0e0;
    /* margin-top: 60px; */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 15px 30px;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1 1 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-btn {
    background-color: var(--btn-primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.footer-btn:hover {
    background-color: var(--blue-color);
}

/* Middle Contact Section */
.contact-person {
    margin-bottom: 1.5rem;
}

.cp-name {
    /* font-weight: bold; */
    font-size: 1.1rem;
    margin-bottom: 4px;
    /* font-family: var(--font-family-heading2); */
}

.footer-email {
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Right Section */
.footer-right h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    /* font-family: var(--font-family-heading2); */
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--btn-primary-color);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--btn-primary-color);
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
    color: #555;
    /* background-color: #f9f9f9;
    border-top: 1px solid #ddd; */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        /* text-align: center; */
        gap: 30px;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        flex: 1 1 100%;
    }

    .footer-btn {
        margin: 1rem auto;
    }
}


/* Latest Work Section */
/* .latest-work {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.latest-work-content {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-work-content h2 {
    font-family: var(--font-family-heading2);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.latest-work-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.latest-work-carousel {
    flex: 1 1 55%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-track {
    display: flex;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 10px 0;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    background-color: var(--soft-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--btn-primary-color);
}

.pause-play {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--btn-primary-color);
    margin-bottom: 10px;
    -webkit-user-select: none;
    user-select: none;
}

.see-all-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--btn-primary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.4);
    transition: background-color 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
}

.see-all-button:hover {
    background-color: #e65c00;
} */

/* Responsive for Latest Work */
/* @media (max-width: 900px) {
    .latest-work {
        flex-direction: column;
        align-items: center;
    }

    .latest-work-content,
    .latest-work-carousel {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .see-all-button {
        position: static;
        margin-top: 15px;
    }
}  */

.wrapper {
    max-width: 960px;
    width: 100%;
    margin: 1em auto;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 1px 1px 4px #666;
    background: #fcfff4;
    aspect-ratio: 16 / 9;
}

.inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

article {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
}

article img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5em 1em;
    border-radius: 5px;
    display: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.play-pause {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
}

.arrow,
.play-pause {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Makes it circular */
    padding: 0;
    /* Remove default padding */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    transition: background 0.3s ease;
}


.arrow:hover,
.play-pause:hover {
    background: rgba(0, 0, 0, 0.8);
}

.arrow i,
.play-pause i {
    font-size: 18px;
}

.slider-dot-control {
    text-align: center;
    margin-top: 10px;
}

.slider-dot-control label {
    cursor: pointer;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #bbb;
    margin: 0 4px;
    border-radius: 50%;
}

.slider-dot-control label.active {
    background: #333;
}

.see-all-container {
    text-align: right;
    margin-top: 10px;
}

.see-all-btn {
    color: var(--secondary-color);
    text-decoration: none;
}

.see-all-btn:hover {
    color: var(--btn-primary-color);
}

.flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .info {
        font-size: 1.2em;
        padding: 0.3em 0.7em;
    }

    .arrow,
    .play-pause {
        padding: 6px;
    }

    .slider-wrapper {
        aspect-ratio: 4 / 3;
    }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .info {
        font-size: 1em;
        padding: 0.3em 0.7em;
    }

    .slider-wrapper {
        height: 500px;
    }

    .arrow,
    .play-pause {
        padding: 5px;
    }
}


@media (max-width: 480px) {
    .info {
        font-size: 1em;
    }
}




/* === Portfolio Landing Section === */
.portfolio-hero-section {
    background: var(--linear-gray-bg);
    background: url('/images/1.jpg') no-repeat center center/cover;
}

.portfolio-landing {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2rem;
    min-height: 100vh;
    box-sizing: border-box;
}

.portfolio-landing .portfolio-text {
    /* flex: 1 1 40%; */
    text-align: center;
    max-width: 600px;
    /* background: rgba(0, 0, 0, 0.5);
    padding: 2rem; */
}

.portfolio-hero-section .footer-btn {
    margin-top: 1rem;
}

.portfolio-landing .portfolio-text h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.portfolio-landing .portfolio-text p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
}

.portfolio-landing .portfolio-image {
    /* flex: 1 1 50%; */
    max-width: 500px;
    text-align: right;
    display: none;
}

.portfolio-image img {
    max-width: 100%;
    height: auto;
    height: 300px;
    width: 600px;
}

/* === Portfolio Gallery === */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 4rem 3rem;
    justify-content: center;
    align-items: center;
    /* background-color: #fafafa; */
}

.portfolio-item {
    height: 300px;
    /* or whatever height you want */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* === Modal Styles (as already provided, but with Font Awesome icons) === */
.portfolio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    justify-content: center;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.portfolio-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    /* background-color: #111; */
    animation: fadeInScale 0.3s ease forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Close & Navigation Buttons */
.portfolio-modal-close,
.portfolio-modal-nav {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.portfolio-modal-close {
    top: 10px;
    right: 10px;
    z-index: 2;
}

.portfolio-modal-nav:hover,
.portfolio-modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
}

.portfolio-modal-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.portfolio-modal-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.portfolio-pagination {
    text-align: center;
    margin: 20px 0;
}

.portfolio-pagination button {
    margin: 0 5px;
    padding: 6px 12px;
    cursor: pointer;
}

.portfolio-pagination button:disabled {
    opacity: 0.5;
    cursor: default;
}


@media (max-width: 600px) {
    .portfolio-landing {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    /* .portfolio-landing .portfolio-image img{
        width: 80%;
    } */
    .portfolio-modal-close,
    .portfolio-modal-nav {
        font-size: 0.7rem;
        width: 25px;
        height: 25px;
    }
}

/* === Footer Styles === */
.site-footer {
    background-color: #fff;
    color: #333;
    /* font-family: var(--font-family-primary); */
    border-top: 1px solid #e0e0e0;
    /* margin-top: 60px; */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 15px 30px;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1 1 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-btn {
    background-color: var(--btn-primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.footer-btn:hover {
    background-color: var(--blue-color);
}

/* Middle Contact Section */
.contact-person {
    margin-bottom: 1.5rem;
}

.cp-name {
    /* font-weight: bold; */
    font-size: 1.1rem;
    margin-bottom: 4px;
    /* font-family: var(--font-family-heading2); */
}

.footer-email {
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Right Section */
.footer-right h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    /* font-family: var(--font-family-heading2); */
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--btn-primary-color);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--btn-primary-color);
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.95rem;
    color: #555;
    /* background-color: #f9f9f9;
    border-top: 1px solid #ddd; */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        /* text-align: center; */
        gap: 30px;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        flex: 1 1 100%;
    }

    .footer-btn {
        margin: 1rem auto;
    }
}

.portfolio-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.portfolio-pagination button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.portfolio-pagination button:hover:not(:disabled) {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.portfolio-pagination button:disabled {
    background-color: #eee;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.portfolio-pagination button:disabled:hover {
    transform: none;
}

.portfolio-pagination button.active,
.portfolio-pagination button:disabled.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}

.portfolio-gallery-section,
.latest-work,
.pt2 {
    padding-top: 2rem;
}

.pb2 {
    padding-bottom: 2rem;
}

.align-center {
    text-align: center;
}

/* Contact Form */
.contact-us .container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* color: var(--secondary-color); */
}

/* From */
.form {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
}

.flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 600px) {
    .flex {
        flex-direction: row;
        gap: 20px;
    }
}

.form label {
    position: relative;
}

.form label {
    flex: 1;
}

.form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 5px;
}

.form label .input+span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 15px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input:valid+span {
    color: green;
}

.input01 {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 5px;
}

.form label .input01+span {
    position: absolute;
    left: 10px;
    top: 50px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input01:placeholder-shown+span {
    top: 40px;
    font-size: 0.9em;
}

.form label .input01:focus+span,
.form label .input01:valid+span {
    top: 50px;
    font-size: 0.7em;
    font-weight: 600;
}

.form label .input01:valid+span {
    color: green;
}

/* Our Process */


.fancy {
    background-color: var(--btn-primary-color);
    /* border: 2px solid #cacaca; */
    border: none;
    border-radius: 0px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 390;
    letter-spacing: 2px;
    margin: 0;
    outline: none;
    overflow: visible;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    padding: 0.5rem 2rem;
    align-self: center;
}


.fancy .text {
    font-size: 1.1em;
    line-height: 1.33333em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: white;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: #fff;
    /* background: var(--btn-primary-color); */
    outline: none;
    border: none;
    background-color: var(--blue-color);
}

.fancy:hover::before {
    width: 1.5rem;
    background: white;
}

.fancy:hover .text {
    color: white;
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}




/* our process */
/* .our-process {} */

/* .process-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: #222;
} */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-tile {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.6s ease forwards;
}

.process-tile:nth-child(1) {
    animation-delay: 0.1s;
}

.process-tile:nth-child(2) {
    animation-delay: 0.2s;
}

.process-tile:nth-child(3) {
    animation-delay: 0.3s;
}

.process-tile:nth-child(4) {
    animation-delay: 0.4s;
}

.process-tile:nth-child(5) {
    animation-delay: 0.5s;
}

.process-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue-color);
    margin-bottom: 15px;
    text-align: center;
    margin-top: 8px;
}

.process-tile h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-align: center;
}

.process-tile p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .process-tile {
        padding: 20px;
    }

    .step-number {
        font-size: 2rem;
    }

    /* .process-title {
        font-size: 1.8rem;
    } */
}





/* Our presence */

.presence-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.presence-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    /* color: #111; */
    font-weight: 600;
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.city-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 250px;
    /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.city-card:hover img {
    transform: scale(1.08);
}

.city-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Process */

.process-wrapper {
    display: flex;
    /* justify-content: center; */
    position: relative;
}

.process-stack-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 280px;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

/* Remove process-arrows styles */
.process-arrows,
.process-arrows button {
    display: none;
}

svg {
    fill: var(--btn-primary-color);
}

/* Industries */
.industries-section {
    padding: 80px 0;
    text-align: center;
    /* background-color: #000 !important; */
    position: relative;
    overflow: hidden;
    color: #fff;
}

.industries-section h2 {
    /* color: var(--secondary-color); */
}

/* .industries-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
} */

/* .industries-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(to right, #1f1c2c, #928dab);
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    z-index: 0;
} */

.container {
    position: relative;
    z-index: 1;
}

.heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ind-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.ind-card {
    /* background-color: #fff; */
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ind-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
}

.industries-img {
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ind-card:hover .industries-img img {
    transform: scale(1.05);
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 12px;
    color: #333;
}



@media screen and (max-width: 480px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .heading {
        font-size: 2rem;
    }
}




/* About Us */

.AbtBtn {
    display: inline-block;
    background-color: var(--btn-primary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.AbtBtn:hover {
    background-color: var(--blue-color);
}

/* AbtHero Section */
.AbtHero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    overflow: hidden;
}

.AbtHero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/1.jpg');
    background-size: cover;
    background-position: center;
    /* opacity: 0.2; */
    z-index: 1;
}

.AbtHero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
    /* z-index: 2; */
}

.AbtHero-content {
    position: relative;
    z-index: 3;
    /* max-width: 800px; */
    color: #fff;
    /* background: rgba(0, 0, 0, 0.6); */
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.AbtHero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.AbtHero p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    /* max-width: 600px; */
    font-weight: bold;
}

/* Journey Section */
.journey {
    padding: 5rem 0;
    /* background-color: #f9f9f9; */
}

.journey-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.journey-text {
    flex: 1;
}

.journey-text h2 {
    /* font-size: 2rem; */
    margin-bottom: 1.5rem;
}

.journey-text p {
    /* color: #555; */
    margin-bottom: 1.5rem;
}

.journey-image {
    flex: 1;
    /* height: 400px; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Abtservices Section */
.Abtservices {
    padding: 5rem 0;
}

.Abtservices h2 {
    margin-bottom: 4rem;
}

.Abtservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
}

.Abtservice-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Abtservice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.Abtservice-icon {
    width: 64px;
    height: 64px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.Abtservice-img {
    text-align: center;
    margin-bottom: 1rem;
}

.Abtservice-img img {
    width: 150px;
}

.Abtservice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.Abtservice-card p {
    /* color: #fff; */
}

/* Impact Section */
.impact {
    padding: 5rem 0;
}

.impact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    position: relative;
}

.impact h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--btn-primary-color);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.impact p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.impact-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.impact-card p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.impact-card {
    flex: 1 1 250px;
    max-width: 300px;
}


/* Why Choose Us */
.why-us {
    padding: 5rem 0;
}

.why-us h2 {
    margin-bottom: 4rem;
}

.why-us-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.why-us-card {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    width: 300px;
}

.why-us-icon {
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    /* width: 200px; */
}

.why-us-icon img {
    width: 200px;
}

.why-us-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-us-card p {
    /* color: #555; */
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    /* background-color: #f9f9f9; */
    text-align: center;
    min-height: auto;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    /* font-size: 2rem; */
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.cta .AbtBtn {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .AbtHero h1 {
        font-size: 2.5rem;
    }

    .journey-container {
        flex-direction: column;
    }

    .journey-text,
    .journey-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .AbtHero {
        /* height: auto; */
        padding: 4rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    .AbtHero p {
        font-size: 1.1rem;
    }

    .journey,
    .Abtservices,
    .impact,
    .why-us,
    .cta {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.75rem;
    }
}

.bold {
    font-weight: 700;
    font-size: 1.2rem;
    /* padding: 0rem 0.7rem; */
}

@media (max-width: 600px) {
    .bold {
        font-size: 1.1rem;
        padding: 0rem;
    }
}


/* fade in on sections */
/* Base fade-in style */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* When visible */
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Children animate one by one */
.fade-in-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When visible */
.fade-in-child.visible {
    opacity: 1;
    transform: translateY(0);
}


/* corners */
.section-light {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* .section-light::before,
.section-light::after {
    content: '';
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
    z-index: -1;
    clip-path: polygon(50% 0%,
            100% 25%,
            100% 75%,
            50% 100%,
            0% 75%,
            0% 25%);
    background: linear-gradient(to bottom, #fdd835, #fbc02d);
} */

/* .section-light::before {
    width: 250px;
    height: 250px;
    top: -100px;
    left: -100px;
    background: linear-gradient(to bottom, #fdd835, #fbc02d);

}

.section-light::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -120px;
    background: linear-gradient(to bottom, #1e3a8a, #3b82f6);
} */

/* .section-light.in-view::before,
.section-light.in-view::after {
    opacity: 1;
    transform: scale(1);
} */

@media (max-width: 600px) {
    /* .section-light::after {
        width: 200px;
        height: 250px;
    } */

    .portfolio-item {
        height: auto;
    }

    /* .section-light::before {
        width: 180px;
        height: 180px;
    } */
}

@keyframes wavyBlob {

    0%,
    100% {
        transform: scale(1) translate(0, 0);
    }

    25% {
        transform: scale(1.05) translate(5px, -5px);
    }

    50% {
        transform: scale(0.95) translate(-5px, 5px);
    }

    75% {
        transform: scale(1.05) translate(5px, 5px);
    }
}

.section-light::before,
.section-light::after {
    /* existing styles here... */
    /* Add animation */
    animation: wavyBlob 8s ease-in-out infinite;
    transform-origin: center center;
}


.clients-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
    overflow: hidden;
    /* background-color: #000 !important; */
    /* color: #fff; */
}




.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    /* color: white; */
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    /* color: rgba(255, 255, 255, 0.9); */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.clients-showcase {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0;
    width: max-content;
}

.clients-row {
    display: flex;
    animation: scroll-left 60s linear infinite;
    margin-bottom: 30px;
}

.clients-row:nth-child(2) {
    animation: scroll-right 10s linear infinite;
}

.clients-row:nth-child(3) {
    animation: scroll-left 10s linear infinite;
    animation-delay: -20s;
}

.client-logo {
    flex: 0 0 200px;
    height: 120px;
    margin: 0 20px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.client-logo:hover::before {
    left: 100%;
}

.clients-row {
    animation-duration: 20s;
    /* Default speed */
    animation-play-state: running !important;
    /* Initially paused until intersection triggers it */
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0;
}

.client-logo img.loaded {
    opacity: 1;
}

.loading-placeholder {
    width: 60px;
    height: 60px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stats-section {
    margin-top: 60px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: white; */
    margin-bottom: 10px;
}

.stat-label {
    /* color: rgba(255, 255, 255, 0.9); */
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .client-logo {
        flex: 0 0 150px;
        height: 100px;
        margin: 0 15px;
    }

    .clients-section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .client-logo {
        flex: 0 0 120px;
        height: 80px;
        margin: 0 10px;
    }
}

section {
    min-height: 100vh;
}

.process-tile {
    /* font-weight: bold; */
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
}

/* hexagons css */
section {
    position: relative;
}

.top-hexa {
    position: absolute;
    top: 0;
}


.blue-hexa-l,
.yellow-hexa-l {
    width: 300px;
    height: 300px;
}

.blue-hexa-l {
    position: absolute;
    top: -100px;
    left: -145px;
}

.yellow-hexa-m {
    position: absolute;
    left: 10px;
    top: 50px;
}

.blue-hexa-m,
.yellow-hexa-m {
    width: 150px;
    height: 180px;
}

.blue-hexa-s,
.yellow-hexa-s {
    width: 75px;
    height: 145px;
}

.yellow-hexa-s {
    left: 80px;
    top: 0px;

    position: absolute;
}


/* Bottom Hexagons (only 3) */
.bottom-hexa {
    position: absolute;
    bottom: -60px;
    right: -160px;
    z-index: -1;
}

.bottom-hexa .yellow-hexa-l {
    width: 300px;
    height: 300px;
    transform: rotate(60deg);
    position: absolute;
    bottom: 70px;
    right: 20px;
}

.bottom-hexa .blue-hexa-m {
    width: 150px;
    height: 180px;
    position: absolute;
    bottom: 120px;
    right: 210px;
}

.bottom-hexa .blue-hexa-s {
    width: 75px;
    height: 145px;
    position: absolute;
    bottom: 70px;
    right: 200px;
}

@keyframes reverseRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}


@keyframes continuousRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes gentleScale {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.05) rotate(0deg);
    }
}

/* Top Hexagons */
.blue-hexa-l {
    animation: gentleScale 10s ease-in-out infinite;
}

.yellow-hexa-m {
    animation: continuousRotate 20s linear infinite;
}

.yellow-hexa-s {
    animation: reverseRotate 20s linear infinite;
}

/* Bottom Hexagons */
.bottom-hexa .yellow-hexa-l {
    animation: gentleScale 10s ease-in-out infinite;
}

.bottom-hexa .blue-hexa-m {
    animation: continuousRotate 18s linear infinite;
}

.bottom-hexa .blue-hexa-s {
    animation: reverseRotate 18s linear infinite;
}


h2 {
    font-size: 2.5rem;
    color: var(--blue-color);
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--btn-primary-color);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.25),
        0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {

    .top-hexa,
    .bottom-hexa {
        display: none;
    }
}

@media (max-width: 380px) {

    .ind-card {
        aspect-ratio: 0;
        /* flex-direction: row; */
        width: 250px;
    }
}

.blank-sec {
    min-height: auto !important;
    padding: 0;
    margin: 0;
}

img {
    mix-blend-mode: multiply
}

.stall-img img {
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--blue-color);
    margin-bottom: 15px;
    text-align: center;
    margin-top: 8px;
}

.step-img img {
    width: 35px;
    margin-bottom: 0.5rem;
}

.wrap-img-no {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}