 :root {
            --primary: #150d43;
            --secondary: #150d43;
            --dark: #150d43;
            --light: #F7FFF7;
            --accent: #150d43;
            --gray: #6C757D;
            --dark-blue: #150d43;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            line-height: 1.7;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
            color: var(--dark);
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            text-decoration: none;
            font-size: 14px;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 15px rgba(21, 13, 67, 0.3);
        }
        
        .btn-primary:hover {
            background: #0f0930;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(21, 13, 67, 0.4);
        }
        
        .btn-secondary {
            background: var(--secondary);
            color: white;
            box-shadow: 0 5px 15px rgba(21, 13, 67, 0.3);
        }
        
        .btn-secondary:hover {
            background: #0f0930;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(21, 13, 67, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--dark);
        }
        
        .btn-outline:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-3px);
        }

        /* Hero Section */
        .about-hero {
            height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(21, 13, 67, 0.9), rgba(21, 13, 67, 0.7)), url('images/about/about1.jpg') no-repeat center center/cover;
            color: white;
        }
        
        .about-hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }
        
        .about-hero h1 {
            font-size: 48px;
            margin-bottom: 25px;
            line-height: 1.2;
            color: white;
        }
        
        .about-hero p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--primary);
        }
        
        .breadcrumb i {
            margin: 0 10px;
            font-size: 12px;
        }

        /* Testimonials Section - Same Design for Both Desktop & Mobile */
        .area-testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .area-testimonials {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .client-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .client-info h4 {
            margin: 0;
            color: #2c3e50;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .client-location {
            margin: 5px 0 0;
            color: var(--primary);
            font-size: 1rem;
            font-weight: 500;
        }
        
        .area-client-rating {
            color: #FFD700;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        .area-client-review {
            color: #34495e;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            flex-grow: 1;
            font-size: 1.05rem;
        }
        
        .quote-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            color: rgba(21, 13, 67, 0.1);
            font-size: 3.5rem;
            z-index: 0;
        }

        /* About Content Section */
        .about-content {
            padding: 100px 0;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .about-text h3 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: var(--dark-blue);
        }
        
        .about-text p {
            margin-bottom: 15px;
            color: var(--gray);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .feature-icon {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .feature-text p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
        }
        
        /* Mission Section - Ultra Premium Design */
        .mission-section {
            padding: 120px 0 160px;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .title-badge {
            display: inline-block;
            background: linear-gradient(90deg, #150d43, #150d43);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(21, 13, 67, 0.3);
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #150d43, #150d43);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #150d43, #150d43);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.8;
            position: relative;
            font-weight: 400;
        }

        .mission-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .mission-card {
            background: white;
            padding: 50px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--card-color);
            transition: all 0.3s ease;
        }

        .mission-card:hover::before {
            height: 10px;
        }

        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .mission-card:hover .card-icon {
            transform: translateY(-10px) rotate(10deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .card-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--card-color);
        }

        .mission-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #2d3748;
            position: relative;
            transition: all 0.3s ease;
        }

        .mission-card:hover h3 {
            color: var(--card-color);
        }

        .mission-card p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.8;
            position: relative;
            transition: all 0.3s ease;
        }

        .card-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .mission-card:hover .card-wave {
            opacity: 1;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

        .shape.triangle {
            width: 100px;
            height: 100px;
            background: #150d43;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape.circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #150d43;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .shape.square {
            width: 70px;
            height: 70px;
            background: #150d43;
            top: 30%;
            left: 70%;
            animation-delay: 4s;
        }

        .shape.hexagon {
            width: 90px;
            height: 90px;
            background: #150d43;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            top: 70%;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Team Section - Premium Styling */
        .team-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .title-badge {
            display: inline-block;
            background: linear-gradient(90deg, #150d43, #150d43);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(21, 13, 67, 0.3);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #150d43, #150d43);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 400;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-card {
            perspective: 1000px;
            height: 380px;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .team-card:hover .card-inner {
            transform: rotateY(180deg);
        }

        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .card-front {
            background: white;
            display: flex;
            flex-direction: column;
        }

        .card-back {
            background: linear-gradient(135deg, #150d43 0%, #0f0930 100%);
            transform: rotateY(180deg);
            padding: 30px;
            display: flex;
            align-items: center;
        }

        .member-image {
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .member-image img {
            transform: scale(1.05);
        }

        .team-card:hover .image-overlay {
            opacity: 1;
        }

        .member-basic-info {
            padding: 25px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .member-basic-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #2d3748;
        }

        .member-basic-info p {
            color: #150d43;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .member-details {
            color: white;
        }

        .member-details p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .member-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .member-social a:hover {
            background: #150d43;
            transform: translateY(-3px);
        }

        .profile-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #150d43;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .profile-btn:hover {
            background: #0f0930;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(21, 13, 67, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gray);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-container h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }
        
        .cta-container p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
            opacity: 0.9;
        }
        
        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 5px;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            opacity: 0.7;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .contact-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            color: white;
            font-size: 18px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: var(--primary);
        }
        
        /* Floating Buttons */
        .float-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: var(--transition);
        }
        
        .float-btn:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-float {
            background: #25D366;
            bottom: 30px;
            right: 30px;
        }
        
        .instagram-float {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            bottom: 100px;
            right: 30px;
        }
        
        .call-float {
            background: var(--primary);
            bottom: 170px;
            right: 30px;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .about-hero h1 {
                font-size: 42px;
            }
            
            .mission-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            
            .about-hero {
                min-height: 400px;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-image, .about-text {
                flex: none;
                width: 100%;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                text-align: center;
                min-height: 350px;
            }
            
            .about-hero h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .mission-cards {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .testimonial-card {
                padding: 30px 25px;
            }
            
            .client-header {
                flex-direction: column;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .client-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cta-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .float-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }
            
            .instagram-float {
                bottom: 80px;
                right: 20px;
            }
            
            .call-float {
                bottom: 140px;
                right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .about-hero h1 {
                font-size: 30px;
            }
            
            .about-hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .cta-container h2 {
                font-size: 28px;
            }
            
            .testimonial-card {
                padding: 25px 20px;
            }
            
            .client-avatar {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
            
            .client-info h4 {
                font-size: 1.2rem;
            }
            
            .area-client-review {
                font-size: 1rem;
            }
            
            .quote-icon {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 20px 18px;
            }
            
            .area-client-review {
                font-size: 0.95rem;
            }
            
            .client-avatar {
                width: 55px;
                height: 55px;
                font-size: 18px;
            }
        }