
/*About section */

/* ======================
   About Section - Balanced Layout
   ====================== */

.about {
    padding: 120px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 46, 95, 0.03) 0%, rgba(0, 191, 255, 0.03) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 25% 0);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #002e5f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: #00bfff;
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00bfff, #002e5f);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}
/* Main Content Layout */
.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}
/* Left Column - Image Section */
.about-image-section {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.05);
}

.experience-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-content {
    text-align: center;
}

.experience-content .years {
    font-size: 4rem;
    font-weight: 700;
    color: #002e5f;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #002e5f, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-content .text {
    font-size: 1.4rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-features {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f8fafc;
    border-radius: 50px;
    border: 1px solid #eaeaea;
    font-size: 1.4rem;
    font-weight: 600;
    color: #002e5f;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: #002e5f;
    color: white;
    border-color: #002e5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 46, 95, 0.1);
}

.feature-badge i {
    color: #00bfff;
    font-size: 1.6rem;
}

.feature-badge:hover i {
    color: white;
}

/* Right Column - Content Section */
.about-content-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-intro h3 {
    font-size: 2.8rem;
    color: #002e5f;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.about-intro h3 .highlight {
    color: #00bfff;
    position: relative;
}

.about-intro .intro-description {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #555;
    font-weight: 300;
    padding-left: 20px;
    border-left: 4px solid #00bfff;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Mission, Vision, Values */
.mv-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mv-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #00bfff;
}

.mv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #00bfff, #002e5f);
    border-radius: 5px 0 0 5px;
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #002e5f, #004a99);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon i {
    font-size: 22px;
    color: white;
}

.mv-header h4 {
    font-size: 2rem;
    color: #002e5f;
    font-weight: 600;
    margin: 0;
}

.mv-item p {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-left: 65px;
}


/* ======================
   Responsive Design
   ====================== */

/* Tablet */
@media (max-width: 991px) {
    .about {
        padding: 80px 0;
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
    
    .about-intro h3 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-intro .intro-description {
        text-align: center;
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
        padding-bottom: 10px;
        border-top: 4px solid #00bfff;
        border-bottom: 4px solid #00bfff;
    }
    
    .main-image {
        height: 400px;
    }
 
    .about-cta {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .experience-overlay {
        bottom: 20px;
        left: 20px;
        padding: 20px;
    }
    
    .experience-content .years {
        font-size: 3rem;
    }
    
    .mv-item {
        padding: 20px;
    }
    
    .mv-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .mv-item p {
        padding-left: 0;
        text-align: center;
    }
    
    
    .about-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn1 {
        width: 100%;
        max-width: 300px;
    }
    
    .image-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-intro h3 {
        font-size: 2.2rem;
    }
    
    .about-intro .intro-description {
        font-size: 1.5rem;
    }
    
    .mv-header h4 {
        font-size: 1.8rem;
    }
    
    .mv-item p {
        font-size: 1.5rem;
    }
    
    .experience-overlay {
        padding: 15px;
    }
    
    .experience-content .years {
        font-size: 2.5rem;
    }
}


/* Technology Stack (Keep same as before, just adjust responsive) */
.tech-stack {
    margin-top: 40px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 20px;
    border: 1px solid #eaeaea;
}

.tech-title {
    font-size: 2.2rem;
    color: #002e5f;
    margin-bottom: 40px;
    font-weight: 600;
}

.tech-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.tech-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #00bfff;
}

.tech-icon i {
    font-size: 3.5rem;
    color: #002e5f;
    transition: transform 0.3s ease;
}

.tech-icon:hover i {
    transform: scale(1.2);
    color: #00bfff;
}

.tech-icon span {
    font-size: 1.4rem;
    color: #666;
    font-weight: 600;
}

@media (max-width: 991px) {
    .tech-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tech-icon {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tech-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-icon {
        padding: 15px;
    }
    
    .tech-icon i {
        font-size: 2.5rem;
    }
    
    .tech-icon span {
        font-size: 1.2rem;
    }
}

/* End About section */

