:root {
    --primary-color: #6e56cf;
    --secondary-color: #2e2e48;
    --accent-color: #9f7aea;
    --background-color: #f8f7fc;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient-bg: linear-gradient(135deg, rgba(110, 86, 207, 0.05) 0%, rgba(159, 122, 234, 0.1) 100%);
}
  
.home-container {
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
  
/* Enhanced Hero Section */
.hero-section {
    padding: 6rem 2rem 8rem !important;
    display: flex;
    align-items: center;
    min-height: 90vh !important;
    position: relative;
    background: var(--gradient-bg) !important;
    border-radius: 0 0 50px 50px !important;
    margin-bottom: 4rem !important;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    opacity: 0.5;
    z-index: 0 !important;
}
  
.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
  
.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.6rem !important;
    color: var(--secondary-color) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}

.highlight {
    color: var(--primary-color) !important;
    position: relative !important;
    display: inline-block !important;
}

.highlight::after {
    content: '' !important;
    position: absolute !important;
    width: 100% !important;
    height: 8px !important;
    background-color: rgba(110, 86, 207, 0.2) !important;
    bottom: 5px !important;
    left: 0 !important;
    z-index: -1 !important;
    border-radius: 4px !important;
}
  
.subtitle {
    font-size: 1.5rem !important;
    color: var(--text-color) !important;
    margin-bottom: 1.5rem !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    max-width: 600px;
}

/* Enhanced image styling */
.hero-image-container {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.hero-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    width: 100% !important;
    padding: 20px !important;
    z-index: 1 !important;
}

.hero-image::before {
    content: '' !important;
    position: absolute !important;
    width: 90% !important;
    height: 90% !important;
    background: rgba(110, 86, 207, 0.1) !important;
    border-radius: 20px !important;
    top: 5% !important;
    left: 15% !important;
    transform: rotate(-5deg) !important;
    z-index: -1 !important;
}

.hero-image::after {
    content: '' !important;
    position: absolute !important;
    width: 90% !important;
    height: 90% !important;
    border: 3px solid var(--accent-color) !important;
    border-radius: 20px !important;
    top: 10% !important;
    left: 5% !important;
    transform: rotate(3deg) !important;
    z-index: -1 !important;
    opacity: 0.6 !important;
}

.profile-image {
    width: 100% !important;
    max-width: 550px !important;
    height: 550px !important;
    aspect-ratio: 5/4 !important;
    border-radius: 20px !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    border: 5px solid white !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
    
.profile-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
  
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}
  
.btn-primary {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(159, 122, 234, 0.4) !important;
}
  
.btn-primary:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(110, 86, 207, 0.5) !important;
}
  
.btn-secondary {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px !important;
    border: 2px solid var(--accent-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}
  
.btn-secondary:hover {
    background-color: rgba(159, 122, 234, 0.1) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }
    
    .profile-image {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image::before, .hero-image::after {
        display: none;
    }
    
    .profile-image {
        max-width: 450px;
    }
    
    .hero-section {
        padding: 6rem 2rem;
    }
}
  
@media (max-width: 768px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-section {
        padding: 3rem 1.5rem 5rem;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 2.6rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .profile-image {
        max-width: 400px;
    }
}
  
@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 1.5rem 4rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 250px;
        margin: 1rem auto 0;
    }
    
    .profile-image {
        max-width: 320px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* ===== ABOUT SECTION STYLING ===== */
.about-section {
    padding: 8rem 2rem;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, var(--background-color) 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(110, 86, 207, 0.03) 0%, rgba(110, 86, 207, 0.01) 50%, transparent 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(110, 86, 207, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(110, 86, 207, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.about-intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding-right: 2rem;
}

.about-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.about-details {
    margin-bottom: 1rem;
}

.about-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.stat-cards {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.expertise-section {
    position: relative;
}

.expertise-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.expertise-section h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 0;
    border-radius: 4px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.expertise-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.expertise-card:hover {
    transform: translateY(-5px) translateX(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    background: rgba(110, 86, 207, 0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.expertise-content {
    padding: 1.5rem;
    flex: 1;
}

.expertise-content h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.expertise-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

/* Responsive styles for the about section */
@media (max-width: 1200px) {
    .about-container {
        gap: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .about-lead {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-section {
        padding: 6rem 2rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-card {
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-icon {
        width: 100%;
        padding: 2rem;
    }
    
    .expertise-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 5rem 2rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .about-lead {
        font-size: 1.2rem;
        padding-left: 1rem;
    }
    
    .stat-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        min-width: calc(33.333% - 1rem);
    }
    
    .expertise-section h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-cards {
        flex-direction: column;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
}

.quote-section {
    background: rgba(110, 86, 207, 0.05);
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}
  
.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.8;
}
  
.quote-content p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}
  
.quote-content p:last-child {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 500;
    color: var(--text-color);
}