/* Root Colors */
:root {
    --secondary-color: rgb(43, 71, 157);
    --primary-color: rgb(99, 104, 176);
    --background-color: rgba(244, 248, 236, 1);
    --text-color: rgb(0, 0, 0);
    --white-color: rgb(255, 255, 255);
    --navbar-background: rgb(24, 23, 22);
    --grey-text-color: rgb(176, 176, 176);
    --heading-color: rgb(51, 56, 69);
}
/* Scroll Bar Style */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--text-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color);
}
a {
    text-decoration: none !important;
}

/* Make navbar properly sticky */
/* ==================== NAVBAR BASE ==================== */
.navbar {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999;
    width: 100%;
}

/* Smooth transition */
.transparent-navbar {
    background: transparent !important;
    transition: all 0.4s ease;
}

/* On scroll - White background */
.navbar-scrolled {
    background: var(--white-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* ==================== NAV LINKS (Desktop) ==================== */
.navbar .nav-link,
.navbar .dropdown-toggle {
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-scrolled .nav-link,
.navbar-scrolled .dropdown-toggle {
    color: var(--text-color) !important;
}

/* Hover & Active */
.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle.active {
    color: var(--secondary-color) !important;
}

/* Underline animation */
.navbar .nav-link::after,
.navbar .dropdown-toggle::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 50%;
    background-color: var(--secondary-color);
    transition: 0.3s ease;
    transform: translateX(-50%);
}

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

/* ==================== HAMBURGER MENU ==================== */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px 10px;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--white-color);
    margin: 6px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

/* Hamburger becomes black when scrolled */
.navbar-scrolled .hamburger-line {
    background: var(--text-color) !important;
}

/* Hamburger stays white when offcanvas is open */
.navbar-toggler[aria-expanded="true"] .hamburger-line {
    background: var(--white-color) !important;
}

/* ==================== OFFCANVAS (Mobile) - Always Black & White ==================== */
.offcanvas {
    background: var(--text-color) !important;
    color: var(--white-color) !important;
}

.offcanvas * {
    color: var(--white-color) !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.btn-close-white:hover {
    opacity: 1;
}

/* ==================== DROPDOWN MENU ==================== */
/* Remove default Bootstrap arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Custom arrow */
.dropdown-arrow {
    transition: transform 0.4s ease;
    font-size: 0.9rem;
    margin-left: 6px;
}

.navbar-scrolled .dropdown-arrow i {
    color: var(--white-color) !important;
}

.dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* ==================== HOVER DROPDOWN ON DESKTOP ONLY ==================== */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    /* Optional smooth fade-in */
    .custom-dropdown {
        transition: all 0.25s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }

    .nav-item.dropdown:hover > .custom-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Prevent accidental closing when moving mouse */
    .dropdown-menu {
        margin-top: 0 !important;
    }
    .navbar-scrolled .dropdown-arrow i {
        color: var(--text-color) !important;
    }
}

/* Desktop Dropdown Styling */
.custom-dropdown {
    background: rgba(35, 35, 35, 0.98) !important;
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    min-width: 220px;
}

.custom-dropdown .dropdown-item {
    color: var(--white-color) !important;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--white-color) !important;
}

.custom-dropdown .dropdown-item i {
    color: var(--white-color) !important;
    margin-right: 12px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .navbar .nav-link,
    .navbar .dropdown-toggle {
        padding: 12px 0;
        font-size: 1.05rem;
    }

    /* Mobile safety */
    .offcanvas,
    .offcanvas .nav-link,
    .offcanvas .dropdown-item,
    .custom-dropdown .dropdown-item {
        color: var(--white-color) !important;
    }
}

/* Home Page Style */

.hero-video-section {
    position: relative;
    height: 91vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-heading-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-heading-carousel .owl-item.active {
    opacity: 1;
}

.hero-heading-carousel .hero-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.hero-heading {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: white;
    margin: 0 0 1.5rem 0;
}

.hero-gradient-text {
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-text-content {
    color: white;
}

.hero-subheading {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.hero-btn {
    padding: 10px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 210px;
    text-align: center;
}

.hero-btn-primary {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(99, 104, 176, 0.3);
}

.hero-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99, 104, 176, 0.4);
}
@media (max-width: 768px) {
    .hero-btn-primary {
        display: none;
    }
}

.hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn-outline:hover {
    background: white;
    color: var(--text-color);
    transform: translateY(-6px);
}

.hero-heading-carousel .owl-dots {
    margin-top: 30px !important;
}

.hero-heading-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    transition: all 0.4s ease;
    margin: 0 6px;
}

.hero-heading-carousel .owl-dot.active span {
    background: var(--secondary-color) !important;
    transform: scale(1.4);
}

.hero-heading-carousel .owl-nav {
    display: none !important;
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .hero-video-section {
        height: 88vh;
    }

    .hero-heading {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subheading {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 80%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--heading-color);
    margin: 0 0 1.5rem 0;
}
.main-heading span {
    color: var(--secondary-color);
}
@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
}

.main-white-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--white-color);
    margin: 0 0 1.5rem 0;
}

.main-white-heading span {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .main-white-heading {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    .section-backgrund-heading {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    .section-backgrund-heading p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-white-heading {
        font-size: 2rem;
    }
    .section-backgrund-heading {
        font-size: 2rem;
    }
    .section-backgrund-heading p {
        font-size: 1rem;
    }
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-heading-div {
    max-width: 820px;
    margin: 0 auto 24px;
    text-align: center;
}

.main-heading-div .main-heading {
    margin-bottom: 14px;
}

.main-heading-div p {
    max-width: 720px;
    margin: 0 auto;
}

.main-heading-div .services-section-badge {
    justify-content: center;
    margin-bottom: 24px;
}

.services-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-section-badge::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary-color);
}

.services-showcase .row {
    row-gap: 24px;
}

.service-cards {
    padding: 25px;
    border-radius: 14px;
    position: relative;
    transition: all 0.35s ease;
    background: var(--white-color);
    display: block;
}

.service-link:hover .service-cards {
    transform: translateY(-4px);
    background: var(--background-color);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.service-link-modern {
    display: block;
    height: 100%;
}

.service-cards-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(99, 104, 176, 0.14);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at top right,
            rgba(99, 104, 176, 0.06),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            var(--white-color) 0%,
            rgba(244, 248, 236, 0.72) 100%
        );
    box-shadow: 0 14px 28px rgba(24, 23, 22, 0.05);
    overflow: hidden;
}

.service-link-modern:hover .service-cards-modern {
    transform: translateY(-6px);
    background:
        radial-gradient(
            circle at top right,
            rgba(99, 104, 176, 0.1),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            var(--white-color) 0%,
            rgba(244, 248, 236, 0.92) 100%
        );
    box-shadow: 0 18px 34px rgba(24, 23, 22, 0.08);
    border-color: rgba(99, 104, 176, 0.22);
}

.arrow-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    opacity: 0;
    transition: all 0.35s ease;
    color: var(--secondary-color);
    font-size: 22px;
}

.service-link:hover .arrow-icon {
    opacity: 1;
    right: 10px;
}

.service-link-modern .arrow-icon {
    display: none;
}

.service-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-card-copy {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.service-logo i {
    font-size: 30px;
    color: var(--navbar-background);
    transition: all 0.35s ease;
}

.service-cards-modern .service-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    margin-bottom: 0;
    background: rgba(99, 104, 176, 0.1);
}

.service-cards-modern .service-logo i {
    font-size: 24px;
}

.service-link:hover .service-logo i {
    color: var(--secondary-color);
    transform: scale(1.12);
}

.service-category {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-name h3 {
    margin-top: 15px;
    color: var(--navbar-background);
    font-weight: 600;
    font-size: 24px;
    transition: 0.3s;
}

.service-cards-modern .service-name h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.28;
}

.service-name .line {
    display: block;
    width: 44px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--secondary-color)
    );
    margin: 10px 0 12px;
    border-radius: 2px;
}

.service-info p {
    color: var(--grey-text-color);
    font-size: 15px;
    line-height: 22px;
    transition: 0.3s ease;
}

.service-cards-modern .service-info p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
}

.service-card-bottom {
    display: flex;
    align-items: center;
    min-height: 34px;
    margin-top: 12px;
}

.service-hover-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--white-color);
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px) scale(0.92);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(43, 71, 158, 0.18);
}

.service-link-modern:hover .service-hover-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.why-choose-section {
    position: relative;
    margin: 22px 0 30px;
    padding: 34px 0 24px;
}

.why-choose-shell {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(99, 104, 176, 0.14);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at top left,
            rgba(99, 104, 176, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            var(--white-color) 0%,
            rgba(244, 248, 236, 0.82) 100%
        );
    box-shadow: 0 18px 36px rgba(24, 23, 22, 0.06);
    overflow: hidden;
}

.why-choose-shell::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(99, 104, 176, 0.14) 0%,
        rgba(99, 104, 176, 0) 70%
    );
    pointer-events: none;
}

.why-choose-intro {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 32px 28px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        var(--navbar-background),
        var(--secondary-color)
    );
    color: var(--white-color);
    box-shadow: 0 18px 32px rgba(24, 23, 22, 0.18);
}

.why-choose-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.why-choose-kicker::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.why-choose-intro h3 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
}

.why-choose-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.why-choose-card {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 24px 22px;
    border-radius: 22px;
    border: 1px solid rgba(99, 104, 176, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(24, 23, 22, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 104, 176, 0.24);
    box-shadow: 0 18px 32px rgba(24, 23, 22, 0.08);
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 104, 176, 0.1);
    color: var(--navbar-background);
}

.why-choose-icon i {
    font-size: 24px;
}

.why-choose-card h3 {
    margin-bottom: 10px;
    color: var(--navbar-background);
    font-size: 22px;
    font-weight: 700;
}

.why-choose-card p {
    margin: 0;
    color: var(--grey-text-color);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .service-cards-modern {
        padding: 20px;
    }

    .service-card-head {
        gap: 14px;
    }

    .service-cards-modern .service-name h3 {
        font-size: 20px;
    }

    .why-choose-shell {
        padding: 20px;
        border-radius: 24px;
    }

    .why-choose-section {
        margin: 14px 0 20px;
        padding: 20px 0 12px;
    }

    .why-choose-intro {
        padding: 26px 22px;
    }

    .why-choose-intro h3 {
        font-size: 28px;
    }
}

.timeline-flex-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%; /* adjust to middle of icons/numbers */
    left: 5%;
    right: 5%;
    height: 6px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 3px;
    z-index: 1;
}

.steps-flex {
    display: flex;
    flex-wrap: nowrap; /* force one row */
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.timeline-step {
    flex: 1 1 18%; /* roughly equal width, prevents squeezing */
    min-width: 180px; /* minimum card width – adjust as needed */
    max-width: 240px;
}

.process-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(43, 71, 158, 0.08);
    transition: all 0.35s ease;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(43, 71, 158, 0.18) !important;
    border-color: var(--secondary-color);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(43, 71, 158, 0.25);
    position: relative;
    z-index: 3;
}

/* ────────────────────────────────────────────────
   Responsive: wrap when screen is too small
───────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .steps-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1.5rem;
    }

    .timeline-step {
        flex: 1 1 45%; /* 2 per row on medium tablets */
        max-width: 320px;
    }

    .timeline-line {
        display: none; /* hide horizontal line when wrapping */
    }
}

@media (max-width: 768px) {
    .timeline-step {
        flex: 1 1 100%; /* 1 per row on mobile */
        max-width: 380px;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }
}

.timeline-flex-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 104px;
    left: 9%;
    right: 9%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(43, 71, 158, 0.16),
        rgba(99, 104, 176, 0.3)
    );
    overflow: hidden;
    z-index: 1;
}

.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -18%;
    width: 22%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        rgba(99, 104, 176, 0),
        rgba(99, 104, 176, 0.95),
        rgba(99, 104, 176, 0)
    );
    animation: processLineFlow 4.8s ease-in-out infinite;
}

.steps-flex {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    position: relative;
    min-width: 0;
    max-width: none;
}

.timeline-step:nth-child(even) {
    padding-top: 58px;
}

.timeline-step:nth-child(1) .process-card {
    animation-delay: 0s;
}

.timeline-step:nth-child(2) .process-card {
    animation-delay: 0.6s;
}

.timeline-step:nth-child(3) .process-card {
    animation-delay: 1.2s;
}

.timeline-step:nth-child(4) .process-card {
    animation-delay: 1.8s;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 28px 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(43, 71, 158, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(24, 23, 22, 0.05);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    animation: processCardFloat 5.8s ease-in-out infinite;
}

.process-card:hover {
    animation: none;
    transform: translateY(-10px);
    border-color: rgba(99, 104, 176, 0.28);
    box-shadow: 0 22px 36px rgba(24, 23, 22, 0.1);
}

.step-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: var(--white-color);
    box-shadow: 0 14px 28px rgba(43, 71, 158, 0.24);
    position: relative;
}

.step-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 1px solid rgba(99, 104, 176, 0.18);
    animation: processPulse 3.2s ease-out infinite;
}

.step-icon i {
    font-size: 28px;
}

@keyframes processLineFlow {
    0% {
        left: -22%;
    }
    100% {
        left: 100%;
    }
}

@keyframes processCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes processPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.45;
    }
    70% {
        transform: scale(1.08);
        opacity: 0;
    }
    100% {
        transform: scale(1.08);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .steps-flex {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-line {
        display: none;
    }

    .timeline-step:nth-child(even) {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .steps-flex {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-card {
        padding: 24px 18px 22px;
    }
}

/* INDUSTRIES SECTION */
.industry-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.industry-service-card {
    height: 100%;
    padding: 35px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;

    /* Smooth diagonal corners */
    border-radius: 40px 12px 40px 12px;
}

.industry-service-card:hover {
    transform: translateY(-8px);
    border-radius: 12px 40px 12px 40px;
}

.industry-service-card i {
    font-size: 30px;
    color: #09135c;
    margin-bottom: 18px;
    transition: 0.4s ease;
}

.industry-service-card h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #09135c;
    margin: 0;
}

.industry-card-cyan {
    background: #77dbe3;
}

.industry-card-yellow {
    background: #ece180;
}

.industry-card-mint {
    background: #a2edd8;
}

.industry-card-orange {
    background: #f7ba76;
}

.industry-card-lime {
    background: #d9f46f;
}

.industry-card-pink {
    background: #f8b1cf;
}

.industry-card-purple {
    background: #e0a0ef;
}

.industry-card-blue {
    background: #7cb0ef;
}

@media (max-width: 1199px) {
    .industry-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-service-card i {
        font-size: 34px;
    }

    .industry-service-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .industry-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-service-card {
        height: 170px;
        padding: 20px 15px;
    }

    .industry-service-card i {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .industry-service-card h4 {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .industry-section-wrapper {
        padding: 70px 0;
    }

    .industry-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-service-card {
        height: 135px;
        padding: 15px 10px;
        border-radius: 28px 10px 28px 10px;
    }

    .industry-service-card:hover {
        border-radius: 10px 28px 10px 28px;
    }

    .industry-service-card i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .industry-service-card h4 {
        font-size: 13px;
        line-height: 1.35;
    }
}

/* Client */
.best-partners {
    background-color: var(--background-color);
}
.client-item {
    transition: opacity 0.4s ease;
    background-color: var(--white-color);
    border: 1px solid var(--background-color);
    border-radius: 10px;
    text-align: center;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    height: 80px;
}

.client-item.client-visible {
    opacity: 1;
    visibility: visible;
}

.client-item img {
    max-width: 100%;
    width: auto;
    max-height: 70px;
    transition: filter 0.3s;
    object-fit: contain;
}

.client-item.client-visible.client-bordered {
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    background: white;
}

.client-item.client-visible.client-bordered img {
    filter: grayscale(0%);
}

.clientCarousel-wrapper {
    margin: 60px 0;
}

/* Section Background */
.section-backgrund {
    position: relative;
    background: url("../images/background/black-background-4.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 40px 0;
    z-index: 1;
}

.section-backgrund::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.get-started-btn {
    background: var(--white-color);
    color: var(--text-color);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.get-started-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-6px);
}

.impact-card {
    padding: 35px 25px;
    height: 100%;
    text-align: left;
    border-radius: 5px;
}

.impact-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.impact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.impact-subtitle {
    font-size: 15px;
    color: var(--grey-text-color);
}

.bg-pink {
    background: rgb(253, 221, 230);
}
.bg-grey {
    background: rgb(232, 232, 232);
}
.bg-yellow {
    background: rgb(253, 238, 181);
}
.bg-blue {
    background: rgb(205, 220, 255);
}
.bg-lightyellow {
    background: rgb(247, 243, 182);
}
.bg-purple {
    background: rgb(231, 216, 255);
}
.bg-green {
    background: rgb(228, 246, 217);
}
.bg-orange {
    background: rgb(255, 226, 182);
}

/* Technology Stack */
.technology-stack {
    position: relative;
    background:
        radial-gradient(
            circle at top left,
            rgba(99, 104, 176, 0.25) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(99, 104, 176, 0.5) 0%,
            transparent 50%
        ),
        var(--text-color);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 40px 0;
    z-index: 1;
}
.technology-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(99, 104, 176, 0.2) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(99, 104, 176, 0.4) 0%,
            transparent 60%
        );
    pointer-events: none;
    z-index: -1;
}
.technology-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.technology-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}
.tech-name h5 {
    color: var(--white-color);
    font-size: 20px;
}
.technology-card:hover .tech-name h5 {
    color: var(--secondary-color);
}
.tech-stack p {
    color: var(--grey-text-color) !important;
}
.technology-card:hover .tech-stack p {
    color: var(--white-color) !important;
}

/* Contact Us */
.contact-section {
    background-color: var(--navbar-background);
    padding: 40px 0;
}
.step-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    color: var(--white-color);
}

.step-item:last-child::before {
    display: none;
}

.step-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--white-color);
}

.step-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey-text-color);
}

@media (max-width: 576px) {
    .step-item {
        padding-left: 0;
        text-align: center;
    }
    .step-circle {
        position: static;
        margin: 0 auto 20px;
    }
    .step-item::before {
        display: none;
    }
}
.contact-us-form {
    background-color: var(--white-color);
    border-radius: 5px;
}
.form-heading h4 {
    color: var(--text-color);
    font-size: 24px;
    font-weight: bold;
}
.form-heading p {
    color: var(--heading-color);
    font-size: 14px;
}
.form-fields {
    margin-bottom: 10px;
}
.custom-input {
    height: 40px;
}
.custom-input:focus {
    box-shadow: 0 0 0 0.05rem var(--heading-color) !important;
    outline: 0 !important;
}
.form-submit-btn {
    padding: 10px 10px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    background: var(--navbar-background);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 104, 176, 0.3);
    border: none;
}
.form-submit-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(99, 104, 176, 0.4);
}

/* Banner */
.inner-banner {
    position: relative;
    width: 100%;
    height: 40vh; /* change as required */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.inner-banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* overlay effect */
    z-index: 1;
}

.inner-banner .banner-content {
    position: absolute;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.breadcrumb-custom {
    position: absolute;
    bottom: -80px;
    left: 30px;
    font-size: 16px;
    z-index: 2;
    color: var(--white-color);
}

.breadcrumb-custom a {
    color: var(--white-color);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

/* Vision Mission */
.vm-box {
    padding: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: transform 0.6s ease-in-out;
}
.vm-box:hover {
    transform: translateY(-6px);
}

.vm-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-box p {
    font-size: 18px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .box-left,
    .box-right {
        border-radius: 16px !important;
        margin-bottom: 15px;
    }
}

/* ============================================= */
/* WHY CHOOSE US SECTION – FINAL PREMIUM VERSION */
/* Ultra-smooth bottom-to-top hover + MIT-WPU style */
/* ============================================= */

.why-choose-legacy-section {
    background-color: var(--background-color);
}

.why-card {
    background: var(--white-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--background-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: start;
}

/* Smooth Bottom-to-Top Background Fill */
.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    background: var(--secondary-color);
    transition: top 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: -1;
}

.why-card:hover::before {
    top: 0;
}

/* Text & Icon Color Change (with slight delay for elegance) */
.why-card:hover .why-card-title,
.why-card:hover .why-card-text,
.why-card:hover .icon-wrapper i {
    color: white !important;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.18s;
}

/* Icon Circle – Beautiful & Responsive */
.icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(67, 97, 238, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Card Title & Text */
.why-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    transition: color 0.4s ease;
}

.why-card-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--grey-text-color);
    transition: color 0.4s ease;
}

/* Hover Lift & Shadow */
.why-card:hover {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.14) !important;
}

@media (max-width: 768px) {
    .icon-wrapper {
        width: 78px;
        height: 78px;
        font-size: 32px;
    }

    .why-card-title {
        font-size: 1.25rem;
    }

    .why-card-text {
        font-size: 0.98rem;
    }

    .why-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 576px) {
    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .why-card-title {
        font-size: 1.2rem;
    }
}
/* Clients Feedback Section */
.clients-feedback-section {
    position: relative;
}

.testimonial-card {
    background: var(--white-color);
    border-radius: 20px;
    transition: all 0.4s ease;
    margin: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.client-img img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    min-height: 120px;
}

.client-name {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.stars i {
    font-size: 1.3rem;
}

/* Owl Carousel Dots & Navigation */
.testimonials-carousel .owl-dots {
    margin-top: 40px !important;
}

.testimonials-carousel .owl-dot.active span {
    background: var(--secondary-color) !important;
    width: 14px;
    height: 14px;
}

.testimonials-carousel .owl-dot span {
    background: var(--grey-text-color) !important;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
}

.testimonials-carousel .owl-nav button {
    background: var(--secondary-color) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    box-shadow: 0 5px 20px rgba(43, 71, 158, 0.3);
}

.testimonials-carousel .owl-nav button:hover {
    background: var(--secondary-color) !important;
}

/* =========================================
   FAQ Section – + / – Icon on the Right Side
   ========================================= */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: white;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

/* Custom Button – Icon on Right */
.faq-btn {
    position: relative;
    background: var(--white-color) !important;
    padding: 22px 70px 22px 24px !important; /* Right padding for icon */
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    width: 100%;
    text-align: left;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    background: var(--background-color) !important;
}

.faq-btn:hover {
    color: var(--secondary-color);
}

/* Hide Bootstrap default caret */
.faq-btn::after {
    display: none !important;
}

/* + / – Icon – Now on the Right */
.faq-btn::before {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    font-size: 28px;
    font-weight: 300;
    line-height: 40px !important;
    text-align: center;
    border-radius: 50%;
    transition: all 0.35s ease;
}

/* Change to – when expanded */
.faq-btn:not(.collapsed)::before {
    content: "−"; /* Proper minus sign */
    background: var(--secondary-color);
    font-size: 32px;
    font-weight: 200;
}

/* Text color & background when open */
.faq-btn:not(.collapsed) {
    color: var(--secondary-color) !important;
    background: var(--background-color) !important;
}

/* Optional: Slight animation on icon */
.faq-btn:not(.collapsed)::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Answer Body */
.faq-body {
    background: var(--background-color);
    padding: 24px 24px 24px 24px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--grey-text-color);
    border-top: 1px solid rgb(232, 232, 232);
}

/* ============================================= */
/* PREMIUM 4-CARD GRID – WHAT WE OFFER (2025 Style) */
/* ============================================= */

.offer-premium-grid {
    background: linear-gradient(
        135deg,
        rgb(249, 251, 253) 0%,
        rgb(245, 247, 255) 100%
    );
    position: relative;
    overflow: hidden;
}

.offer-premium-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 180px;
    pointer-events: none;
}

/* Card Style */
.offer-grid-card {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--grey-text-color);
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.offer-grid-card:hover::before {
    transform: scaleX(1);
}

.offer-grid-card:hover {
    transform: translateY(-12px);
}

/* Icon Circle */
.offer-grid-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    color: var(--secondary-color);
}

.offer-grid-card:hover .offer-grid-icon {
    transform: scale(1.1);
}

/* Text */
.offer-grid-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.offer-grid-text {
    font-size: 0.9rem;
    line-height: 1.75;
    text-align: left;
}

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

/* Responsive */
@media (max-width: 768px) {
    .offer-grid-card {
        padding: 30px 20px;
    }
    .offer-grid-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* ============================================= */
/* MASTERED TECHNOLOGIES – PREMIUM SVG GRID    */
/* ============================================= */

.mastered-tech-section {
    position: relative;
}

.mastered-tech-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

.mastered-tech-item {
    background: var(--background-color);
    padding: 1.8rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 104, 176, 0.12);
    backdrop-filter: blur(8px);
}

.mastered-tech-item:hover {
    transform: translateY(-10px);
    background: var(--white-color);
    box-shadow: 0 20px 50px rgba(43, 71, 158, 0.15);
    border-color: rgba(99, 104, 176, 0.25);
}

.mastered-tech-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%) opacity(0.8);
    transition: all 0.4s ease;
}

.mastered-tech-item:hover .mastered-tech-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.mastered-tech-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
}

/* Animation */
.mastered-tech-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: masteredTechFadeInUp 0.7s ease forwards;
}

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

/* Responsive */
@media (max-width: 576px) {
    .mastered-tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .mastered-tech-item {
        padding: 1.2rem 0.8rem;
    }
    .mastered-tech-logo {
        width: 44px;
        height: 44px;
    }
}

/* public/css/portfolio-premium.css */

.portfolio-card-premium {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card-premium:hover {
    transform: translateY(-20px);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-card-premium:hover .portfolio-img {
    transform: scale(1.15);
}

.portfolio-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        var(--secondary-color) 80%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.portfolio-card-premium:hover .portfolio-overlay-premium {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.portfolio-card-premium:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.portfolio-details {
    padding: 1.8rem 1.5rem 1.5rem;
    background: var(--white-color);
}

.portfolio-details h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.6rem;
}

.portfolio-details p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-img-wrapper {
        height: 240px;
    }
    .portfolio-details {
        padding: 1.5rem 1.2rem;
    }
    .overlay-content h3 {
        font-size: 1.3rem;
    }
}

.cu-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading-color);
}

.cu-subtext {
    font-size: 16px;
    color: var(--grey-text-color);
    margin-top: 10px;
}

.cu-input {
    border-radius: 25px;
    padding: 14px 20px;
    border: 1px solid rgb(221, 221, 221);
    font-size: 15px;
}

.cu-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
}

.cu-submit-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 12px 60px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cu-submit-btn:hover {
    background-color: var(--secondary-color);
    transition: 0.3s ease-in-out;
    transform: translateY(-2px);
}

.cu-info-box {
    background-color: var(--white-color);
    padding: 10px 10px;
    position: relative;
    z-index: 10;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.cu-icon {
    width: 75px;
    height: 75px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.cu-info-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.cu-info-text {
    font-size: 14px;
    color: var(--text-color);
}
.contact-background {
    background: var(--secondary-color);
    height: 250px;
    margin-top: -150px;
    position: relative;
    z-index: 0;
}
@media (max-width: 991px) {
    .contact-background {
        display: none;
    }
}
.cu-form {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
}

/* Footer Style */
.footer {
    background: var(--navbar-background);
    border-top: 1px solid var(--white-color);
}
.footer-description p {
    color: var(--grey-text-color);
}
.footer-info-heading {
    color: var(--secondary-color);
}
.footer-info-heading p {
    font-size: 14px;
    color: var(--grey-text-color);
}
.footer-link-section h5 {
    color: var(--secondary-color);
}
.footer-link-section ul li a {
    color: var(--white-color);
    transition: color 0.3s ease;
}
.footer-link-section ul li a:hover {
    color: var(--secondary-color);
}
.copyright-section {
    border-top: 1px solid var(--white-color);
    padding: 15px 0;
}
.footer-social-links a {
    color: var(--white-color);
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s ease;
}
@media (max-width: 768px) {
    .copyright-section p {
        text-align: center;
    }
    .footer-social-links {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Contact Form Styles */
.contact-form-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--grey-text-color);
    margin-bottom: 25px;
}

.custom-input {
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--grey-text-color);
}

.custom-input:focus {
    border-color: var(--text-color);
    box-shadow: none;
}

.custom-input::placeholder {
    color: var(--grey-text-color);
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid var(--grey-text-color);
    border-radius: 2px;
    margin-top: 3px;
}

.custom-checkbox:checked {
    background-color: var(--text-color);
    border-color: var(--text-color);
}

.nda-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 5px;
}

.contact-submit-btn {
    background: var(--text-color);
    color: var(--white-color);
    font-weight: 700;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--grey-text-color);
    color: var(--white-color);
}
