/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(248, 250, 252, 0.9) 100%);
    overflow: hidden;
}

.about-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 25% 25%, rgba(225, 29, 72, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(100, 116, 139, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(226, 232, 240, 0.3) 1px, transparent 1px);
    background-size: 800px 800px, 800px 800px, 24px 24px;
    animation: patternFloat 20s ease-in-out infinite;
}

/* Vision & Mission Section */
.about-vision-mission {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.5) 100%);
}

.vision-card,
.mission-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(225, 29, 72, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: none;  /* Remove gradient background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: rgb(225 29 72);
}

/* Core Values Section */
.about-values {
    background: white;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden; /* Ensure content is clipped if needed */
}

/* Values Header */
.values-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 800px;
}

.values-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF0054;
    margin-bottom: 1rem;
    position: relative;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: flex;
    gap: 0;
    height: 270px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin-top: 1.5rem;
}

/* Value Card */
.value-card {
    flex: 1;
    background: white;
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.25rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: flex 0.4s ease, 
                background 0.3s ease,
                box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.value-card:last-child {
    border-right: none;
}

.value-card:hover {
    flex: 2.5;
    background: linear-gradient(135deg, rgba(255, 228, 230, 0.3), rgba(254, 242, 242, 0.5));
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Content within Value Card */
.value-content {
    width: 100%;
    transition: all 0.3s ease;
}

.value-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.value-header i {
    font-size: 2.5rem;
    color: #FF0054;
    margin-top: 0.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-header i {
    transform: scale(1.05);
}

.value-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.value-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin: 0;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.value-card:hover .value-text {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animation classes for value cards */
.value-card.animate-prepare {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments for value cards */
@media (max-width: 1024px) {
    .values-grid {
        height: 230px;
    }
    .value-card {
        padding: 1rem 0.875rem 0.875rem;
    }
    .value-header i {
        font-size: 2rem;
        margin-top: 0.25rem;
    }
    .value-header h3 {
        font-size: 1.1rem;
    }
    .value-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
        height: auto;
        border: none;
        box-shadow: none;
        margin-top: 1rem;
    }
    .value-card {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        padding: 1.5rem 1.25rem 1.25rem;
        flex: none;
        justify-content: flex-start;
        text-align: left;
    }
    .value-card:last-child {
        border-bottom: none;
    }
    .value-card:hover {
        flex: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .value-text {
        opacity: 1;
        transform: translateY(0);
        font-size: 1rem;
        text-align: left;
    }
    .value-header i {
        margin-top: 0;
    }
}

/* Why Choose Us Section - Enhanced */
.about-why-us {
    background: white;
    padding: 4rem 0; /* Reduced from 6rem */
    position: relative;
    overflow: hidden;
}

.about-why-us .values-grid {
    margin-top: 3rem;
}

.about-why-us .value-card {
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about-why-us .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-why-us .value-icon i {
    font-size: 1.5rem;
    color: rgb(225 29 72);
    transition: transform 0.3s ease;
}

.about-why-us .value-card:hover .value-icon i {
    transform: scale(1.1) rotate(5deg);
}

.about-why-us .value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-why-us .value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Choose Us Section - Enhanced */
.about-why-us {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-main {
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(225, 29, 72, 0.1);
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 1.5rem;
    color: rgb(225 29 72);
    margin-top: 0.25rem;
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgb(15, 23, 42);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.925rem;
    color: rgb(100, 116, 139);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item:hover {
        transform: translateY(-4px);
    }
} 

/* Our Company Section */
.about-company {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Company Header */
.company-header {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.logo-title-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-logo-wrapper {
    flex-shrink: 0;
}

.company-logo {
    width: 80px;
    height: auto;
}

.company-title-wrapper {
    flex-grow: 1;
}

.company-name {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.company-subtitle {
    font-size: 1.125rem;
    color: #FF0054;
    font-weight: 400;
}

/* Company Description */
.company-description {
    max-width: none; /* Remove max-width constraint */
    margin: 0; /* Remove auto margins */
    text-align: left; /* Align text to left */
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
}

.description-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.main-description,
.sub-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: none; /* Remove any max-width constraints */
}

/* Update company intro spacing */
.company-intro {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 1.5rem;
}

/* Ensure consistent left alignment in mobile view */
@media (max-width: 768px) {
    .company-description,
    .description-section,
    .main-description,
    .sub-description {
        text-align: left;
    }
}

/* Company Stats */
.company-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF1F4;
    border-radius: 8px;
}

.icon-square {
    width: 20px;
    height: 20px;
    background: #FF0054;
    border-radius: 4px;
}

.stat-icon i {
    font-size: 1.25rem;
    color: #FF0054;
}

/* Update Founded icon */
.stat-icon i.fa-calendar {
    font-size: 1.25rem;
    color: #FF0054;
}

.stat-content {
    flex-grow: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* Partner Badge */
.partner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: fit-content;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.7s forwards;
    border: 1px solid #eee;
}

.partner-text {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

/* Remove partner logo */
.partner-logo {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .logo-title-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .company-name {
        font-size: 1.75rem;
    }

    .company-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding: 0 2rem;
    }

    .stat-item {
        width: 100%;
    }
} 

/* Company Identity Section */
.about-identity {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    position: relative;
    padding: 4rem 0;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem; /* Reduced from 3rem for tighter grid */
    margin-top: 1.5rem;
}

.identity-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.identity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 84, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 0, 84, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Update the card-icon hover styles */
.identity-card:hover .card-icon {
    transform: scale(1.1) rotate(0);
    background: none;
}

.identity-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.card-content {
    padding: 2rem; /* Reduced from 3rem for more compact cards */
    position: relative;
    z-index: 1;
}

.card-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 100% 0%, rgba(255, 0, 84, 0.05) 0%, transparent 70%);
    transition: all 0.4s ease;
    opacity: 0;
}

.identity-card:hover .card-pattern {
    opacity: 1;
    transform: scale(1.2);
}

/* Section Badge Enhancement */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FFF1F4, #FFF5F7);
    color: #FF0054;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.section-badge i {
    font-size: 1rem;
}

/* Update the stat-icon hover styles */
.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: #FFF1F4; /* Keep the original background color */
}

/* Remove any background change on hover for value-icon if present */
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: 1fr;
    }

    .identity-card {
        padding: 2rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 1rem;
    }
} 

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .values-grid {
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }
} 

/* Animations */
@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 12px); }
} 

/* Company Profile Layout */
.company-profile-grid {
    display: grid;
    grid-template-columns: 200px 1fr; /* Reduced from 280px */
    gap: 3rem; /* Reduced from 4rem */
    max-width: 1200px;
    margin: 0 auto;
}

/* Company Container */
.company-container {
    background: white;
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 24px -8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

/* Add subtle gradient overlay */
.company-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 0, 84, 0.1),
        rgba(255, 0, 84, 0.05) 50%,
        transparent
    );
}

/* Adjust internal spacing */
.company-profile-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
}

/* Left Sidebar */
.company-sidebar {
    position: sticky;
    top: 2rem;
}

/* Profile Image Container */
.profile-image-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo styling */
.company-logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    display: block; /* Ensures proper centering */
}

/* Maintain left alignment for stats */
.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

/* Remove profile-circle and directly style the logo */
.profile-circle {
    display: none; /* or remove the class entirely from HTML */
}

/* Vertical Stats */
.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Reduced from 1.5rem */
    margin-top: 1.5rem; /* Reduced from 2rem */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Reduced from 1rem */
    padding: 0.5rem 0; /* Remove horizontal padding */
    background: transparent; /* Remove background */
    border: none; /* Remove border */
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateX(4px); /* Reduced from 8px */
    box-shadow: none; /* Remove shadow */
}

/* Remove icon background and border */
.stat-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.25rem;
    color: #FF0054;
}

.stat-content {
    flex-grow: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem; /* Reduced spacing */
}

.stat-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* Company Info Container */
.company-info-container {
    padding: 0; /* Remove padding */
}

.company-intro {
    margin-bottom: 2rem; /* Reduced from 3rem */
    border-bottom: 1px solid rgba(226, 232, 240, 0.8); /* Thinner border */
    padding-bottom: 1.5rem; /* Reduced padding */
    text-align: left; /* Ensure left alignment */
}

.company-name {
    font-size: 2.25rem; /* Slightly reduced */
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.company-tagline {
    font-size: 1.125rem; /* Slightly reduced */
    color: #FF0054;
}

/* Description Sections */
.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

/* Remove these styles */
.section-title::before {
    display: none; /* or remove this block entirely */
}

.main-description,
.sub-description {
    font-size: 1rem;
    line-height: 1.6; /* Slightly reduced */
    color: #4a4a4a;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .company-container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .company-profile-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .company-sidebar {
        position: relative;
        top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Changed from center */
    }

    .profile-circle {
        margin: 0; /* Remove center alignment */
    }

    .quick-stats {
        width: 100%;
    }

    .company-intro {
        text-align: left; /* Ensure left alignment on mobile */
    }

    .section-title {
        justify-content: flex-start; /* Changed from center */
    }

    .company-container {
        padding: 2rem;
        border-radius: 12px;
    }

    .profile-image-container {
        justify-content: flex-start; /* Align left on mobile */
    }
} 

/* Company Section Base */
.about-company {
    background: white;
    padding: 4rem 0; /* Reduced from 6rem */
}

/* Company Details Layout */
.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* Company Information */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Reduced from 3rem */
}

.info-section {
    max-width: 700px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    position: relative;
    padding-left: 0; /* Removed left padding */
}

/* Remove the red line on the left */
.section-title::before {
    display: none;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-right: 2rem; /* Added to maintain some space from facts section */
}

/* Company Facts */
.company-facts {
    position: sticky;
    top: 2rem;
    padding: 2rem;
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 24px -8px rgba(0, 0, 0, 0.08);
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-item i {
    font-size: 1.5rem;
    color: #FF0054;
    width: 24px;
    text-align: center;
}

.fact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.fact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.05em;
}

.fact-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .about-company {
        padding: 3rem 0 4rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .company-facts {
        position: static;
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
} 

/* Identity Section Base */
.about-identity {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    padding: 4rem 0; /* Reduced from 6rem */
    position: relative;
}

/* Header Styling */
.identity-header {
    text-align: left;
    margin-bottom: 3rem; /* Reduced from 4rem */
    max-width: 800px;
}

.identity-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF0054;
    margin-bottom: 1rem;
    position: relative;
}

.identity-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

/* Grid Layout */
.identity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 1.5rem; /* Reduced from 2rem */
}

/* Card Styling */
.identity-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.identity-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px -8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 0, 84, 0.08);
}

.card-content {
    padding: 2rem; /* Reduced from 3rem for more compact cards */
    position: relative;
}

.card-header {
    margin-bottom: 1rem; /* Reduced from 1.5rem */
    position: relative;
}

.card-label {
    font-size: 1.125rem; /* Slightly reduced for better fit */
    font-weight: 600;
    color: #FF0054;
    position: relative;
    display: inline-block;
}

/* Remove underline for Vision & Mission labels in modern identity cards */
.identity-card.modern .card-label::after {
  content: none !important;
  display: none !important;
}

.card-text {
    font-size: 1rem; /* Slightly reduced for better fit */
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .identity-title {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 1.75rem; /* Further reduced for medium screens */
    }
}

@media (max-width: 768px) {
    .about-identity {
        padding: 4rem 0;
    }

    .identity-header {
        margin-bottom: 2rem;
    }

    .identity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Further reduced for mobile */
    }

    .identity-title {
        font-size: 1.75rem;
    }

    .card-content {
        padding: 1.5rem; /* Adjusted for mobile for proper scaling */
    }

    .card-text {
        font-size: 0.95rem; /* Adjusted for mobile */
    }
} 

/* Why Choose Us Section */
.about-why-us {
    background: white;
    padding: 4rem 0; /* Reduced from 6rem */
    position: relative;
}

/* Header Styling */
.why-us-header {
    text-align: left;
    margin-bottom: 3rem; /* Reduced from 4rem */
    max-width: 800px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF0054;
    margin-bottom: 1rem;
    position: relative;
}

.why-us-header .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

/* Grid Layout */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Card Styling */
.why-us-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px -8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 0, 84, 0.08);
}

.why-us-card .card-content {
    padding: 2.5rem;
    position: relative;
}

.why-us-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.why-us-card .card-header i {
    font-size: 1.5rem;
    color: #FF0054;
    opacity: 0.9;
    transition: transform 0.2s ease, color 0.2s ease;
}

.why-us-card:hover .card-header i {
    transform: scale(1.05);
    opacity: 1;
}

.why-us-card .card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.why-us-card .card-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-header .section-title {
        font-size: 2rem;
    }
    
    .why-us-card .card-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-why-us {
        padding: 4rem 0;
    }

    .why-us-header {
        margin-bottom: 2rem; /* Reduced from 3rem */
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-header .section-title {
        font-size: 1.75rem;
    }

    .why-us-card .card-content {
        padding: 1.75rem;
    }

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

/* Compact vertical spacing for About page sections */
.about-company,
.about-identity,
.about-values,
.about-why-us,
.about-team {
  padding: 3rem 0; /* reduced from 4rem+ */
}

/* Reduce header bottom margins */
.identity-header,
.values-header,
.why-us-header {
  margin-bottom: 2rem; /* reduced for tighter layout */
}

/* Slightly reduce inner top margins where present */
.values-grid { margin-top: 1.25rem; }
.why-us-grid { margin-top: 1.5rem; }

/* Responsive: slightly tighter on medium screens */
@media (max-width: 1024px) {
  .about-company,
  .about-identity,
  .about-values,
  .about-why-us,
  .about-team { padding: 2.5rem 0; }
}

/* Responsive: compact on mobile while maintaining readability */
@media (max-width: 768px) {
  .about-company,
  .about-identity,
  .about-values,
  .about-why-us,
  .about-team { padding: 2rem 0; }
  .identity-header,
  .values-header,
  .why-us-header { margin-bottom: 1.5rem; }
} 

/* Generic section divider with description (reusable) */
.section-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(15,23,42,0.1), rgba(15,23,42,0.05));
}
.section-divider-text {
  font-size: 0.95rem;
  color: #64748b; /* slate-500 */
  padding: 0 0.75rem;
  white-space: nowrap;
} 

/* Simple section header + description (consistent across sections) */
.section-header {
  margin-bottom: 1.25rem;
}
.section-title-min {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a; /* slate-900 */
}
.section-desc-min {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b; /* slate-500 */
}

@media (max-width: 768px) {
  .section-title-min { font-size: 1.25rem; }
  .section-desc-min { font-size: 0.95rem; }
} 

/* Shared section header (consistent with home page) */
.section-header-home {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}
.section-header-home .section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF0054; /* rose-500 */
    margin-bottom: 1rem;
}
.section-header-home .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a; /* slate-900 */
    margin-bottom: 1rem;
}
.section-header-home .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569; /* slate-600 */
    margin: 0 auto;
    max-width: 700px;
}
@media (max-width: 768px) {
    .section-header-home { margin-bottom: 1.25rem; }
    .section-header-home .section-title { font-size: 2rem; }
    .section-header-home .section-subtitle { font-size: 1rem; }
} 

/* Ensure About page section headers are centered consistently */
.about-identity .section-header-home,
.about-values .section-header-home,
.about-why-us .section-header-home,
.about-team .section-header-home {
  text-align: center !important;
}
.about-identity .section-header-home .section-title,
.about-values .section-header-home .section-title,
.about-why-us .section-header-home .section-title,
.about-team .section-header-home .section-title,
.about-identity .section-header-home .section-subtitle,
.about-values .section-header-home .section-subtitle,
.about-why-us .section-header-home .section-subtitle,
.about-team .section-header-home .section-subtitle {
  display: block;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
} 

/* Modern identity cards (Vision & Mission) */
.identity-card.modern {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 8px 24px -12px rgba(15,23,42,0.12);
  position: relative;
}
.identity-card.modern .card-content {
  padding: 2rem;
}
.identity-card.modern .card-header.enhanced {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.identity-card.modern .identity-icon {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(225, 29, 72, 0.25);
  color: #FF0054;
}
.identity-card.modern .identity-icon i { font-size: 1.75rem; }
.identity-card.modern .card-label { font-weight: 700; color: #0f172a; }
.identity-card.modern .card-text { color: #475569; }
.identity-card.modern .card-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 100% 0%, rgba(255,0,84,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.identity-card.modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(15,23,42,0.18);
  border-color: rgba(225,29,72,0.15);
}
@media (max-width: 768px) {
  .identity-card.modern .card-content { padding: 1.5rem; }
} 

/* --- Modern Vision & Mission refinements (scoped) --- */
.about-identity .identity-grid {
  gap: 1.5rem; /* tighter grid */
}

.about-identity .identity-card.modern {
  border-radius: 16px;
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: none;
  transition: transform 220ms ease, border-color 220ms ease;
}

.about-identity .identity-card.modern:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: rgba(225,29,72,0.22);
}

.about-identity .identity-card.modern .card-content {
  padding: 1.75rem 1.5rem;
}

.about-identity .identity-card.modern .card-header.enhanced .card-label,
.about-identity .identity-card.modern .card-header.enhanced h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.about-identity .identity-card.modern .card-header.enhanced {
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.about-identity .identity-card.modern .identity-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  background: none;
  color: #e11d48;
}

.about-identity .identity-card.modern .card-label {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #1a1a1a;
  margin: 0;
}

.about-identity .identity-card.modern .card-text {
  color: #4a4a4a;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* remove decorative accent for a cleaner, consistent look */
.about-identity .identity-card.modern::after {
  content: none;
}

/* responsive polish */
@media (max-width: 1024px) {
  .about-identity .identity-card.modern .card-content { padding: 1.5rem; }
  .about-identity .identity-card.modern .card-text { font-size: 1rem; }
}
@media (max-width: 768px) {
  .about-identity .identity-grid { gap: 1rem; }
  .about-identity .identity-card.modern { border-radius: 14px; }
} 
