/* ===============================
   Global Reset & Base Styles
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066ff;
    --primary-dark: #0055dd;
    --primary-light: rgba(0, 102, 255, 0.1);
    --primary-extra-light: rgba(0, 102, 255, 0.05);
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --dark-light: #495057;
    --success: #28a745;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #003366 100%);
    --gradient-light: linear-gradient(135deg, rgba(0, 102, 255, 0.8) 0%, rgba(0, 51, 102, 0.8) 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0 50px;
    position: relative;
}

/* ===============================
   Hero Section
================================ */
.about-hero {
    background: var(--gradient);
    padding: 120px 0 150px;
    color: white;
    height: 50%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: 50px;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.15;
    animation: grain 8s steps(10) infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    bottom: -100px;
    left: -100px;
    animation: float 12s ease-in-out infinite reverse;
}

/* ===============================
   CTA Section
================================ */
.cta-section {
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: 100px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ===============================
   Buttons
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===============================
   Animations
================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}


/* ===============================
   End Hero Staring and Ending Banner 
================================ */










/* ===============================
   Start Main First Section
================================ */
 
        .techsol-profile-card {
            max-width: 1200px;
            margin: 40px auto;
            padding: 70px 50px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .techsol-profile-card::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            border-radius: 50%;
            opacity: 0.05;
            z-index: 0;
            transition: all 0.5s ease;
        }
        
        .techsol-profile-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #f72585 0%, #7209b7 100%);
            border-radius: 50%;
            opacity: 0.05;
            z-index: 0;
            transition: all 0.5s ease;
        }
        
        .techsol-profile-card:hover::before {
            transform: scale(1.1) translate(10px, -10px);
            opacity: 0.08;
        }
        
        .techsol-profile-card:hover::after {
            transform: scale(1.1) translate(-10px, 10px);
            opacity: 0.08;
        }
        
        .techsol-main-title {
            font-size: 3rem;
            margin-bottom: 30px;
            color: #212529;
            position: relative;
            z-index: 1;
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: default;
        }
        
        .techsol-main-title:hover {
            transform: translateY(-3px);
            text-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }
        
        .techsol-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            border-radius: 2px;
            transition: all 0.4s ease;
        }
        
        .techsol-main-title:hover::after {
            width: 100%;
        }
        
        .techsol-description-text {
            font-size: 1.25rem;
            color: #495057;
            line-height: 1.9;
            position: relative;
            z-index: 1;
            max-width: 90%;
            text-align: justify;
            padding-right: 20px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .techsol-description-text:hover {
            transform: translateX(5px);
        }
        
        .techsol-stats-container {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .techsol-stat-box {
            flex: 1;
            min-width: 200px;
            background: rgba(67, 97, 238, 0.05);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .techsol-stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(58, 12, 163, 0.1) 100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 0;
        }
        
        .techsol-stat-box:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
        }
        
        .techsol-stat-box:hover::before {
            opacity: 1;
        }
        
        .techsol-stat-box:hover .techsol-stat-value {
            transform: scale(1.2);
        }
        
        .techsol-stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .techsol-stat-label {
            font-size: 1.1rem;
            color: #495057;
            font-weight: 500;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .techsol-stat-box:hover .techsol-stat-label {
            color: #3a0ca3;
            font-weight: 600;
        }
        
        .techsol-tech-icons {
            position: absolute;
            top: 40px;
            right: 40px;
            z-index: 0;
            opacity: 0.7;
        }
        
        .techsol-tech-symbol {
            display: inline-block;
            font-size: 2rem;
            margin: 0 10px 10px 0;
            color: #4361ee;
            opacity: 0.3;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .techsol-tech-symbol:hover {
            opacity: 0.8;
            transform: scale(1.5) rotate(15deg);
            color: #f72585;
        }
        
        .techsol-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
        }
        
        .techsol-floating-element {
            position: absolute;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(58, 12, 163, 0.1) 100%);
            border-radius: 50%;
            opacity: 0.5;
            animation: techsol-float 15s infinite ease-in-out;
        }
        
        .techsol-floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .techsol-floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: -2s;
        }
        
        .techsol-floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: -4s;
        }
        
        .techsol-floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 20%;
            animation-delay: -6s;
        }
        
        @keyframes techsol-float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(0) rotate(10deg);
            }
            75% {
                transform: translateY(20px) rotate(5deg);
            }
        }
        
        .techsol-highlight {
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .techsol-highlight:hover {
            text-shadow: 0 0 15px rgba(67, 97, 238, 0.5);
        }
        
        .techsol-highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            transition: all 0.4s ease;
        }
        
        .techsol-highlight:hover::after {
            width: 100%;
        }
        
        .techsol-action-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 40px;
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .techsol-action-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3a0ca3 0%, #4361ee 100%);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .techsol-action-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.5);
        }
        
        .techsol-action-btn:hover::before {
            left: 0;
        }
        
        @media (max-width: 992px) {
            .techsol-profile-card {
                padding: 50px 40px;
            }
            
            .techsol-main-title {
                font-size: 2.5rem;
            }
            
            .techsol-description-text {
                font-size: 1.15rem;
                max-width: 100%;
                padding-right: 0;
            }
            
            .techsol-stats-container {
                gap: 20px;
            }
            
            .techsol-stat-box {
                min-width: 150px;
            }
        }
        
        @media (max-width: 768px) {
            .techsol-profile-card {
                padding: 40px 30px;
                margin: 20px auto;
            }
            
            .techsol-main-title {
                font-size: 2.2rem;
            }
            
            .techsol-description-text {
                font-size: 1.1rem;
            }
            
            .techsol-stats-container {
                flex-direction: column;
            }
            
            .techsol-tech-icons {
                display: none;
            }
        }
        
        @keyframes techsol-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .techsol-profile-card {
            animation: techsol-fadeIn 1s ease-out;
        }
        
        .techsol-pattern-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%234361ee" x="0" y="0" width="20" height="20"/><rect fill="%234361ee" x="40" y="40" width="20" height="20"/><rect fill="%234361ee" x="80" y="80" width="20" height="20"/></svg>');
            background-size: 100px 100px;
        }