/* About Page Premium Redesign - Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --premium-teal: #2be4ac;
    --premium-teal-rgb: 43, 228, 172;
    --premium-purple: #6653e8;
    --premium-purple-rgb: 102, 83, 232;
    --premium-void: #050614;
    --premium-glass: rgba(15, 16, 35, 0.7);
    --premium-glass-border: rgba(255, 255, 255, 0.1);
    --premium-text-bright: #f8fafc;
    --premium-text-muted: #94a3b8;
    --premium-glow: 0 0 30px rgba(43, 228, 172, 0.2);
}

/* Global Aesthetics */
body {
    background-color: var(--premium-void);
    color: var(--premium-text-bright);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--premium-text-bright);
}

/* Page Header Upgrade */
.page-header {
    position: relative;
    padding: 240px 0 100px !important;
    background-color: var(--premium-void);
    overflow: hidden;
    text-align: center;
}


.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.8);
    transform: scale(1.05);
    transition: transform 10s ease;
}

.page-header:hover .page-header-bg {
    transform: scale(1);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--premium-void), transparent);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 20px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}

.thm-breadcrumb {
    background: var(--premium-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    padding: 10px 25px;
    border-radius: 100px;
    border: 1px solid var(--premium-glass-border);
}

.thm-breadcrumb li a {
    color: var(--premium-teal);
    font-weight: 600;
}

.thm-breadcrumb li.active {
    color: var(--premium-text-muted);
}

/* Delivering IT / Services Cards */
.delivering-it-two {
    background: var(--premium-void);
    padding: 100px 0;
}

.delivering-it__single {
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--premium-glass-border);
}

.delivering-it__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--premium-teal);
}

.delivering-it__img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    background: #000;
    height: 400px;
}

.delivering-it__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.delivering-it__single:hover .delivering-it__img img {
    opacity: 1;
    transform: scale(1.05);
}

/* Glassmorphism Content Box */
.delivering-it__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 27, 46, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    margin: 0 !important;
    transition: all 0.3s ease;
}

.delivering-it__single:hover .delivering-it__content {
    background: rgba(26, 27, 46, 0.85);
    border-color: var(--premium-teal);
}

.delivering-it__content-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Business Section - Impact Upgrade */
.business-from {
    position: relative;
    padding: 120px 0;
    background-color: #000;
}

.business-from-bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 10, 80, 0.95) 0%, rgba(10, 10, 30, 0.98) 100%) !important;
    z-index: 1;
}

.business-from-bg {
    opacity: 0.4 !important;
    mix-blend-mode: overlay !important;
}

.business-from__inner {
    position: relative;
    z-index: 2;
}

.business-from__sub-title {
    color: var(--premium-teal) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(43, 228, 172, 0.1);
    border-radius: 4px;
    text-shadow: 0 0 10px rgba(43, 228, 172, 0.4);
}

.business-from__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: -webkit-linear-gradient(#ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thm-btn.business-from__btn {
    background: #2DD4BF !important;
    border: none;
    border-radius: 12px;
    padding: 18px 45px;
    color: #1b1525 !important;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
}

.thm-btn.business-from__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.6);
}

.business-from__btn:before {
    display: none;
}

/* Why Choose Us Section - Premium Identity Redesign */
.notech-more {
    padding: 140px 0;
    position: relative;
    background: radial-gradient(circle at 0% 0%, rgba(43, 228, 172, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(102, 83, 232, 0.05) 0%, transparent 50%),
        var(--premium-void);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.notech-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: url('../images/shapes/section-title-shape.png') no-repeat center;
    opacity: 0.03;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1.5);
}

.notech-more__left {
    margin-right: 50px;
    position: relative;
    z-index: 2;
}

.notech-more .section-title__tagline {
    background: linear-gradient(90deg, var(--premium-teal), #24c292);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.notech-more .section-title__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notech-more__text {
    color: var(--premium-text-muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 400;
    border-left: 3px solid var(--premium-teal);
    padding-left: 20px;
}

.notech-more__points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notech-more__points li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.notech-more__points li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(43, 228, 172, 0.1), transparent);
    transition: width 0.4s ease;
    z-index: 0;
}

.notech-more__points li:hover {
    transform: translateX(10px) translateY(-5px);
    border-color: rgba(43, 228, 172, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.notech-more__points li:hover::before {
    width: 100%;
}

.notech-more__points li .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--premium-teal);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.notech-more__points li:hover .icon {
    background: var(--premium-teal);
    color: var(--premium-void);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 30px rgba(43, 228, 172, 0.4);
    border-color: transparent;
}

.notech-more__points li .content {
    position: relative;
    z-index: 1;
}

.notech-more__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    transition: color 0.3s ease;
}

.notech-more__points li:hover .notech-more__title {
    color: var(--premium-teal);
}

.notech-more__text-2 {
    color: var(--premium-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Image Side */
.notech-more__img {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.notech-more__img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg);
}

.notech-more__img:hover img {
    transform: rotateY(0deg) scale(1.02);
    border-color: var(--premium-teal);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(43, 228, 172, 0.1);
}

/* Floating Elements behind image */
.notech-more__img::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--premium-teal) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.notech-more__img::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--premium-purple) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(50px);
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

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

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

/* Scroll Animations Shorthand */
[data-aos] {
    transition-duration: 1000ms !important;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .page-header h2 {
        font-size: 40px;
    }

    .business-from__title {
        font-size: 32px;
    }

    .section-title__title {
        font-size: 30px;
    }

    .delivering-it__single {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .delivering-it__img {
        height: 300px;
    }
}

/* About Company Section - Professional Design */
.about-company {
    padding: 120px 0;
    background: var(--premium-void);
    position: relative;
}

.about-company__image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-company__image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.about-company__badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: linear-gradient(135deg, var(--premium-teal), #24c292);
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(43, 228, 172, 0.3);
}

.about-company__badge .years {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--premium-void);
    line-height: 1;
}

.about-company__badge .label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--premium-void);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-company__content {
    padding-left: 50px;
}

.about-company__tagline {
    display: inline-block;
    color: var(--premium-teal);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-company__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-company__text {
    color: var(--premium-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Highlights */
.about-company__highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(43, 228, 172, 0.2);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(43, 228, 172, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--premium-teal);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.highlight-content p {
    font-size: 14px;
    color: var(--premium-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Stats Bar */
.about-company__stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--premium-teal);
    line-height: 1;
}

.stat-name {
    display: block;
    font-size: 14px;
    color: var(--premium-text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .about-company__content {
        padding-left: 0;
        margin-top: 60px;
    }

    .about-company__badge {
        right: 20px;
    }

    .about-company__title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .about-company__stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .stat-item {
        flex: 1 1 calc(33% - 20px);
    }

    .about-company__badge {
        padding: 20px 25px;
    }

    .about-company__badge .years {
        font-size: 32px;
    }
}