
/* Base Styles */
:root {
--primary: #2ecc71;
--secondary: #3498db;
--dark: #2c3e50;
--light: #ecf0f1;
--accent: #e74c3c;
--transition: all 0.5s ease;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
scroll-behavior: smooth;
}

body {
background-color: #f9f9f9;
color: #333;
overflow-x: hidden;
}

section {
padding: 80px 20px;
}

.container {
max-width: 1200px;
margin: 0 auto;
}

h1, h2, h3, h4 {
margin-bottom: 20px;
color: var(--dark);
}

p {
line-height: 1.6;
margin-bottom: 15px;
}

.btn {
display: inline-block;
padding: 12px 30px;
background-color: var(--primary);
color: white;
border: none;
border-radius: 30px;
font-weight: bold;
cursor: pointer;
transition: var(--transition);
text-decoration: none;
text-align: center;
}

.btn:hover {
background-color: var(--secondary);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-title {
text-align: center;
margin-bottom: 50px;
position: relative;
}

.section-title:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--primary);
}

/* Navbar */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgba(44, 62, 80, 0.95);
padding: 15px 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 1.8rem;
font-weight: bold;
color: white;
}

.logo span {
color: var(--primary);
}

.nav-links {
display: flex;
list-style: none;
}

.nav-links li {
margin-left: 20px;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
font-size: 0.9rem;
}

.nav-links a:hover {
color: var(--primary);
}

.mobile-menu-btn {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}

/* Hero Section */
.hero {
height: 600px;
position: relative;
overflow: hidden;
margin-top: 70px;
}

.hero-slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
}

.slide.active {
opacity: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: white;
max-width: 800px;
padding: 0 20px;
}

.hero-title {
font-size: 2.5rem;
margin-bottom: 20px;
color: white;
animation: fadeInDown 1s ease;
}

.hero-description {
font-size: 1.2rem;
margin-bottom: 30px;
animation: fadeInUp 1s ease;
}

.mirror-wipe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent);
z-index: 3;
transform: translateX(-100%) skewX(-15deg);
}

.mirror-wipe.active {
animation: mirrorWipe 3s ease;
}

@keyframes mirrorWipe {
0% { transform: translateX(-100%) skewX(-15deg); }
50% { transform: translateX(0) skewX(-15deg); }
100% { transform: translateX(100%) skewX(-15deg); }
}

@keyframes fadeInDown {
from {
    opacity: 0;
    transform: translateY(-50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* About Section */
.about {
background-color: white;
}

.about-content {
display: flex;
align-items: center;
gap: 50px;
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease;
}

.about-content.visible {
opacity: 1;
transform: translateY(0);
}

.about-text {
flex: 1;
}

.about-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

.image-container {
width: 300px;
height: 300px;
border-radius: 50%;
overflow: hidden;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
animation: shrink 3s infinite alternate;
}

.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}

.ring {
position: absolute;
border-radius: 50%;
border: 2px solid var(--primary);
animation: ringAnimation 3s infinite alternate;
}

.ring-1 {
width: 320px;
height: 320px;
animation-delay: 0.2s;
}

.ring-2 {
width: 340px;
height: 340px;
animation-delay: 0.4s;
}

.color-wipe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.3), transparent);
animation: colorWipe 4s infinite;
}

@keyframes shrink {
0% { transform: scale(1); }
100% { transform: scale(0.95); }
}

@keyframes ringAnimation {
0% { transform: scale(1); opacity: 1; }
100% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes colorWipe {
0% { transform: translateX(-100%); }
50% { transform: translateX(0); }
100% { transform: translateX(100%); }
}

/* Counter Section */
.counter {
background-color: var(--dark);
color: white;
}

.counter .section-title {
color: white;
}

.counter .section-title:after {
background-color: var(--primary);
}

.counter-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease;
}

.counter-grid.visible {
opacity: 1;
transform: translateY(0);
}

.counter-item {
text-align: center;
padding: 30px 20px;
background-color: rgba(255,255,255,0.1);
border-radius: 10px;
transition: var(--transition);
position: relative;
overflow: hidden;
}

.counter-item:hover {
transform: translateY(-10px);
background-color: rgba(255,255,255,0.2);
}

.counter-item:hover .counter-icon {
transform: scale(1.2);
}

.counter-icon {
font-size: 40px;
margin-bottom: 20px;
color: var(--primary);
animation: spin 3s infinite linear;
display: flex;
justify-content: center;
}

.counter-number {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 10px;
}

.counter-text {
font-size: 1.1rem;
}

.counter-wipe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transform: translateX(-100%);
}

.counter-item:hover .counter-wipe {
animation: counterWipe 1.5s ease;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

@keyframes counterWipe {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

/* Services Section */
.services {
background: url('imgs/abt-img2.jpeg') fixed;
background-size: cover;
position: relative;
}

.services-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
}

.services-content {
position: relative;
z-index: 1;
color: white;
}

.services .section-title {
color: white;
}

.services .section-title:after {
background-color: var(--primary);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}

.service-item {
background-color: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 10px;
text-align: center;
backdrop-filter: blur(10px);
transition: var(--transition);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-item:hover {
transform: translateY(-10px);
background-color: rgba(255,255,255,0.2);
}

.service-icon {
font-size: 50px;
margin-bottom: 20px;
color: var(--primary);
animation: bounce 2s infinite;
}

.service-title {
font-size: 1.5rem;
margin-bottom: 15px;
color: white;
}

.service-description {
color: rgba(255,255,255,0.8);
}

@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}

/* Why Choose Us Section */
.why-choose-us {
background-color: white;
}

.why-container {
display: flex;
flex-direction: column;
position: relative;
}

.center-line {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 3px;
height: 100%;
background-color: var(--primary);
}

.why-item {
width: 45%;
padding: 30px;
background-color: var(--light);
border-radius: 10px;
margin-bottom: 50px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
position: relative;
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease;
}

.why-item.visible {
opacity: 1;
transform: translateY(0);
}

.why-item.left {
align-self: flex-start;
}

.why-item.right {
align-self: flex-end;
}

.why-icon-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
}

.why-icon {
font-size: 40px;
color: var(--primary);
animation: spin 3s infinite linear;
}

.why-title {
font-size: 1.3rem;
margin-bottom: 15px;
text-align: center;
}

/* Meet the Founder Section */
.founder-section {
background-color: var(--light);
}

.founder-content-wrapper {
display: flex;
align-items: center;
gap: 50px;
opacity: 0;
}

.founder-content-wrapper.visible {
animation: slideIn 1s ease forwards;
}

.founder-image-container {
flex: 1;
display: flex;
justify-content: center;
position: relative;
transform: translateX(-100px);
opacity: 0;
}

.founder-content-wrapper.visible .founder-image-container {
animation: slideInLeft 1s ease 0.3s forwards;
}

.founder-img-box {
width: 300px;
height: 400px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
position: relative;
}

.founder-img-box img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.founder-shadow-effect {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 0 5px var(--primary);
border-radius: 10px;
animation: shadowPulse 2s infinite alternate;
}

.founder-color-wipe-effect {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.3), transparent);
animation: mirrorWipe 4s infinite;
}

.founder-text-content {
flex: 1;
transform: translateX(100px);
opacity: 0;
}

.founder-content-wrapper.visible .founder-text-content {
animation: slideInRight 1s ease 0.3s forwards;
}

@keyframes slideInLeft {
from {
    transform: translateX(-100px);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}

@keyframes slideInRight {
from {
    transform: translateX(100px);
    opacity: 0;
}
to {
    transform: translateX(0);
    opacity: 1;
}
}

@keyframes shadowPulse {
0% { box-shadow: 0 0 0 0 var(--primary); }
100% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0.3); }
}

/* FAQ Section */
.faq {
background-color: white;
}

.faq-content {
display: flex;
gap: 50px;
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease;
}

.faq-content.visible {
opacity: 1;
transform: translateY(0);
}

.faq-text {
flex: 1;
}

.faq-items {
flex: 1;
}

.faq-item {
margin-bottom: 20px;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
transition: var(--transition);
}

.faq-item:hover {
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-weight: bold;
padding: 15px 20px;
background-color: #f9f9f9;
transition: var(--transition);
}

.faq-question:hover {
background-color: #f0f0f0;
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background-color: white;
}

.faq-answer.active {
max-height: 500px;
}

.faq-answer-content {
padding: 0 20px 20px;
}

.faq-toggle {
font-size: 1.2rem;
transition: transform 0.3s ease;
color: var(--primary);
}

.faq-toggle.active {
transform: rotate(45deg);
}

.view-more-btn {
margin-top: 30px;
text-align: center;
}

/* Modal */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
z-index: 1000;
align-items: center;
justify-content: center;
}

.modal.active {
display: flex;
}

.modal-content {
background-color: white;
padding: 30px;
border-radius: 10px;
max-width: 800px;
width: 90%;
max-height: 80vh;
overflow-y: auto;
position: relative;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-modal {
position: absolute;
top: 15px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
color: var(--dark);
transition: var(--transition);
}

.close-modal:hover {
color: var(--accent);
}

/* Contact Section */
.contact {
background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') fixed;
background-size: cover;
position: relative;
}

.contact-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.7);
}

.contact-content {
position: relative;
z-index: 1;
color: white;
display: flex;
gap: 50px;
}

.contact-info {
flex: 1;
}

.contact-form {
flex: 1;
background-color: rgba(255,255,255,0.1);
padding: 30px;
border-radius: 10px;
backdrop-filter: blur(10px);
}

.contact-item {
background-color: rgba(255,255,255,0.1);
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
backdrop-filter: blur(10px);
display: flex;
align-items: center;
gap: 15px;
}

.contact-icon {
font-size: 24px;
color: var(--primary);
}

.contact-item h3, .contact-item p {
color: white;
}

.form-group {
margin-bottom: 20px;
}

.form-control {
width: 100%;
padding: 12px 15px;
border: none;
border-radius: 5px;
background-color: rgba(255,255,255,0.9);
}

textarea.form-control {
min-height: 150px;
resize: vertical;
}

/* Footer */
footer {
background-color: var(--dark);
color: white;
padding: 50px 20px 20px;
}

.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 50px;
margin-bottom: 30px;
}

.footer-column {
flex: 1;
min-width: 250px;
}

.footer-column h3 {
color: white;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}

.footer-column h3:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background-color: var(--primary);
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 10px;
}

.footer-column ul li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: var(--transition);
}

.footer-column ul li a:hover {
color: var(--primary);
padding-left: 5px;
}

.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}

.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255,255,255,0.1);
border-radius: 50%;
color: white;
text-decoration: none;
transition: var(--transition);
}

.social-link:hover {
background-color: var(--primary);
transform: translateY(-5px);
}

.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright a {
color: var(--primary);
text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-btn {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background-color: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
z-index: 100;
cursor: pointer;
transition: var(--transition);
animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
transform: scale(1.1);
}

.whatsapp-modal {
display: none;
position: fixed;
bottom: 90px;
right: 20px;
width: 300px;
background-color: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
z-index: 1000;
padding: 20px;
}

.whatsapp-modal.active {
display: block;
animation: slideUp 0.3s ease;
}

.whatsapp-content h3 {
margin-bottom: 15px;
color: var(--dark);
}

.whatsapp-content p {
margin-bottom: 20px;
color: #666;
}

.close-whatsapp {
position: absolute;
top: 10px;
right: 15px;
font-size: 1.2rem;
cursor: pointer;
color: var(--dark);
transition: var(--transition);
}

.close-whatsapp:hover {
color: var(--accent);
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

@keyframes slideUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Responsive Styles */
@media (max-width: 992px) {
.about-content, .founder-content-wrapper, .faq-content, .contact-content {
    flex-direction: column;
}

.counter-grid {
    grid-template-columns: repeat(2, 1fr);
}

.why-item {
    width: 100%;
    align-self: center !important;
}

.center-line {
    display: none;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 10px 0;
}

.mobile-menu-btn {
    display: block;
}

/* Mobile hero section height */
.hero {
    height: 400px;
}
}

@media (max-width: 768px) {
.hero-title {
    font-size: 2rem;
}

.services-grid {
    grid-template-columns: 1fr;
}

.counter-grid {
    grid-template-columns: 1fr;
}

.footer-content {
    gap: 30px;
}

/* Mobile thin line for why choose us */
.why-container {
    position: relative;
}

.center-line {
    display: block;
    left: 20px;
    transform: none;
}

.why-item {
    width: calc(100% - 40px);
    margin-left: 40px;
}
}





    /* Founder Profile Section Styles */
    .founder-profile {
        padding: 100px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .profile-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .profile-heading {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 70px;
        color: #2c3e50;
        position: relative;
        font-weight: 700;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease 0.2s;
    }

    .profile-heading.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .profile-heading:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #2ecc71, #3498db);
        border-radius: 2px;
    }

    .profile-content {
        display: flex;
        align-items: center;
        gap: 80px;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease 0.4s;
    }

    .profile-content.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    .profile-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .profile-frame {
        position: relative;
        width: 380px;
        height: 480px;
        background: white;
        border-radius: 20px;
        box-shadow: 
            0 25px 50px rgba(0,0,0,0.1),
            0 0 0 1px rgba(255,255,255,0.8);
        overflow: hidden;
        transform: perspective(1000px) rotateY(-5deg);
        transition: all 0.5s ease;
        animation: pulse-glow 3s ease-in-out infinite;
    }

    @keyframes pulse-glow {
        0%, 100% {
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.1),
                0 0 0 1px rgba(255,255,255,0.8),
                0 0 20px rgba(46, 204, 113, 0.3);
            transform: perspective(1000px) rotateY(-5deg) scale(1);
        }
        50% {
            box-shadow: 
                0 25px 50px rgba(0,0,0,0.15),
                0 0 0 1px rgba(255,255,255,0.9),
                0 0 40px rgba(46, 204, 113, 0.6);
            transform: perspective(1000px) rotateY(-5deg) scale(1.02);
        }
    }

    .profile-frame:hover {
        transform: perspective(1000px) rotateY(0deg);
        animation: none;
        box-shadow: 
            0 30px 60px rgba(0,0,0,0.15),
            0 0 0 1px rgba(255,255,255,0.9),
            0 0 50px rgba(46, 204, 113, 0.8);
    }

    .profile-image-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    .profile-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
        position: relative;
        z-index: 1;
    }

    .profile-frame:hover .profile-img {
        transform: scale(1.05);
    }

    /* Wiping Effect */
    .image-wipe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            rgba(46, 204, 113, 0.2),
            rgba(255, 255, 255, 0.4),
            transparent
        );
        z-index: 2;
        animation: wipe 4s ease-in-out infinite;
        transform: translateX(-100%) skewX(-15deg);
    }

    @keyframes wipe {
        0% {
            transform: translateX(-100%) skewX(-15deg);
        }
        50% {
            transform: translateX(100%) skewX(-15deg);
        }
        100% {
            transform: translateX(-100%) skewX(-15deg);
        }
    }

    .profile-decoration {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .decoration-circle {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
        animation: float 6s ease-in-out infinite;
    }

    .circle-1 {
        width: 80px;
        height: 80px;
        top: -20px;
        right: -20px;
        animation-delay: 0s;
    }

    .circle-2 {
        width: 60px;
        height: 60px;
        bottom: 30px;
        left: -30px;
        animation-delay: 2s;
    }

    .circle-3 {
        width: 40px;
        height: 40px;
        top: 50%;
        right: 40px;
        animation-delay: 4s;
    }

    .profile-details {
        flex: 1;
        padding: 20px;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease 0.6s;
    }

    .profile-content.animate-in .profile-details {
        opacity: 1;
        transform: translateX(0);
    }

    .profile-header {
        margin-bottom: 30px;
    }

    .profile-name {
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .profile-title {
        font-size: 1.2rem;
        color: #7f8c8d;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .profile-bio {
        margin-bottom: 40px;
    }

    .bio-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #5a6c7d;
        margin-bottom: 20px;
        position: relative;
        padding-left: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .profile-content.animate-in .bio-text:nth-child(1) {
        transition-delay: 0.8s;
    }
    .profile-content.animate-in .bio-text:nth-child(2) {
        transition-delay: 1s;
    }
    .profile-content.animate-in .bio-text:nth-child(3) {
        transition-delay: 1.2s;
    }

    .profile-content.animate-in .bio-text {
        opacity: 1;
        transform: translateY(0);
    }

    .bio-text:before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 8px;
        height: 8px;
        background: #2ecc71;
        border-radius: 50%;
    }

    .profile-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease 1.4s;
    }

    .profile-content.animate-in .profile-actions {
        opacity: 1;
        transform: translateY(0);
    }

    .action-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .call-btn {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
    }

    .email-btn {
        background: white;
        color: #2c3e50;
        border: 2px solid #e9ecef;
    }

    .call-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    }

    .email-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border-color: #3498db;
        color: #3498db;
    }

    /* Animations */
    @keyframes float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(10deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .profile-content {
            flex-direction: column;
            gap: 50px;
        }
        
        .profile-frame {
            transform: none;
            width: 320px;
            height: 400px;
            animation: pulse-glow-mobile 3s ease-in-out infinite;
        }

        @keyframes pulse-glow-mobile {
            0%, 100% {
                box-shadow: 
                    0 20px 40px rgba(0,0,0,0.1),
                    0 0 0 1px rgba(255,255,255,0.8),
                    0 0 15px rgba(46, 204, 113, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 
                    0 20px 40px rgba(0,0,0,0.15),
                    0 0 0 1px rgba(255,255,255,0.9),
                    0 0 30px rgba(46, 204, 113, 0.6);
                transform: scale(1.02);
            }
        }
        
        .profile-details {
            text-align: center;
        }
        
        .bio-text:before {
            display: none;
        }
        
        .bio-text {
            padding-left: 0;
        }
        
        .profile-actions {
            justify-content: center;
        }

        .profile-content {
            transform: translateY(50px);
        }
    }

    @media (max-width: 768px) {
        .founder-profile {
            padding: 70px 20px;
        }
        
        .profile-heading {
            font-size: 2.2rem;
        }
        
        .profile-name {
            font-size: 1.8rem;
        }
        
        .profile-frame {
            width: 280px;
            height: 350px;
        }
        
        .action-btn {
            padding: 12px 25px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .profile-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .action-btn {
            width: 200px;
            justify-content: center;
        }
    }
