            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Arial', sans-serif;
            }
            /* Header Styles */
            
            header {
                position: fixed;
                width: 100%;
                background: #fff;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 50px;
            }
            
            .logo {
                font-size: 28px;
                font-weight: bold;
                color: #333;
                text-decoration: none;
                transition: color 0.3s ease;
                letter-spacing: 0.5px;
            }
            
            .logo:hover {
                color: #007bff;
            }
            
            nav ul {
                display: flex;
                list-style: none;
            }
            
            nav ul li a {
                text-decoration: none;
                color: #333;
                padding: 10px 20px;
                transition: 0.3s;
            }
            
            nav ul li a:hover {
                color: #007bff;
            }
            /* Home Section */
            
            #home {
                height: 100vh;
                min-height: 100vh;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                position: relative;
                overflow: hidden;
                background: rgba(0, 0, 0, 0.6);
                padding-top: 80px;
                /* Account for fixed header */
            }
            
            .slideshow-container {
                position: absolute;
                top: 0;
                left: 0;
                width: 1200%;
                height: 100%;
                display: flex;
                animation: slideshow 60s linear infinite;
                z-index: 1;
            }
            
            .slide {
                width: 100vw;
                height: 100%;
                position: relative;
                flex-shrink: 0;
                background-position: center;
                background-size: cover;
            }
            
            .slide::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 2;
            }
            
            .slide:nth-child(1) {
                background: url('images/photo1.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(2) {
                background: url('images/photo2.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(3) {
                background: url('images/photo3.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(4) {
                background: url('images/photo4.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(5) {
                background: url('images/photo5.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(6) {
                background: url('images/photo6.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(7) {
                background: url('images/photo7.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(8) {
                background: url('images/photo8.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(9) {
                background: url('images/photo9.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(10) {
                background: url('images/photo10.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(11) {
                background: url('images/photo11.jpg') center/cover no-repeat;
            }
            
            .slide:nth-child(12) {
                background: url('images/photo12.jpg') center/cover no-repeat;
            }
            
            @keyframes slideshow {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-91.666%);
                }
            }
            
            .hero {
                position: relative;
                z-index: 5;
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 30px;
            }
            
            .hero-content {
                position: relative;
                z-index: 6;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 3rem;
                height: calc(100vh - 100px);
                padding: 40px 0;
            }
            
            .hero-text {
                flex: 1;
                max-width: 600px;
            }
            
            .hero-text h1 {
                font-size: 4rem;
                margin-bottom: 20px;
                line-height: 1.2;
                color: #ffffff;
                font-weight: 700;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            }
            
            .typing-text {
                font-size: 1.8rem;
                margin-bottom: 20px;
                min-height: 40px;
                color: #ffffff;
                text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            }
            
            .hero-description {
                font-size: 1.2rem;
                margin-bottom: 30px;
                color: #ffffff;
                line-height: 1.6;
                text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
                max-width: 90%;
            }
            
            .hero-buttons {
                display: flex;
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .btn {
                padding: 12px 30px;
                border-radius: 50px;
                font-size: 1.1rem;
                font-weight: 600;
                text-decoration: none;
                transition: all 0.3s ease;
            }
            
            .primary-btn {
                background: #007bff;
                color: white;
                border: 2px solid #007bff;
            }
            
            .primary-btn:hover {
                background: transparent;
                color: #007bff;
            }
            
            .secondary-btn {
                background: transparent;
                color: white;
                border: 2px solid white;
            }
            
            .secondary-btn:hover {
                background: white;
                color: #1a1a1a;
            }
            
            .social-links {
                display: flex;
                gap: 15px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
            }
            
            .social-icon:hover {
                background: #007bff;
                transform: translateY(-3px);
            }
            
            .hero-image {
                flex: 1;
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 400px;
                height: 100%;
            }
            
            .hero-image img {
                width: 100%;
                height: auto;
                max-width: 300px;
                border-radius: 20px;
                object-fit: cover;
                box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
                animation: float 6s ease-in-out infinite;
            }
            
            @keyframes float {
                0% {
                    transform: translateY(0px);
                }
                50% {
                    transform: translateY(-20px);
                }
                100% {
                    transform: translateY(0px);
                }
            }
            
            @media (max-width: 1200px) {
                .hero-text h1 {
                    font-size: 3.5rem;
                }
                .hero-image {
                    max-width: 350px;
                }
            }
            
            @media (max-width: 992px) {
                .hero-text h1 {
                    font-size: 3rem;
                }
                .hero-description {
                    font-size: 1.1rem;
                }
                .hero-image {
                    max-width: 300px;
                }
            }
            
            @media (max-width: 768px) {
                #home {
                    padding-top: 60px;
                }
                .hero-content {
                    flex-direction: column;
                    text-align: center;
                    height: auto;
                    padding: 40px 0;
                    gap: 2rem;
                }
                .hero-text {
                    max-width: 100%;
                }
                .hero-text h1 {
                    font-size: 2.5rem;
                }
                .typing-text {
                    font-size: 1.4rem;
                }
                .hero-description {
                    font-size: 1rem;
                    margin: 0 auto 30px;
                }
                .hero-buttons {
                    justify-content: center;
                }
                .hero-image {
                    margin-top: 20px;
                    max-width: 280px;
                }
                .hero-image img {
                    max-width: 220px;
                }
                .social-links {
                    justify-content: center;
                }
            }
            
            @media (max-width: 480px) {
                .hero {
                    padding: 0 20px;
                }
                .hero-text h1 {
                    font-size: 2rem;
                }
                .hero-buttons {
                    flex-direction: column;
                    gap: 15px;
                }
                .btn {
                    width: 100%;
                    text-align: center;
                }
                .hero-image {
                    max-width: 240px;
                }
                .hero-image img {
                    max-width: 200px;
                }
            }
            /* Project Styles */
            
            .project-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }
            
            .project-item {
                background: #fff;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }
            
            .project-item img {
                width: 100%;
                border-radius: 5px;
            }
            /* Contact Form Styles */
            
            .contact-form {
                max-width: 800px;
                margin: 0 auto;
                padding: 40px;
                background: #ffffff;
                border-radius: 20px;
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }
            
            .contact-form form {
                display: grid;
                gap: 25px;
            }
            
            .form-group {
                position: relative;
            }
            
            .form-group label {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: #666;
                font-size: 0.95rem;
                pointer-events: none;
                transition: all 0.3s ease;
            }
            
            .form-group.message label {
                top: 25px;
            }
            
            .form-control {
                width: 100%;
                padding: 15px 20px;
                border: 2px solid #e0e0e0;
                border-radius: 12px;
                font-size: 1rem;
                background: #f8f9fa;
                transition: all 0.3s ease;
            }
            
            .form-control:focus {
                border-color: #007bff;
                box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
                background: #ffffff;
            }
            
            .form-control:focus+label,
            .form-control:not(:placeholder-shown)+label {
                top: -12px;
                left: 12px;
                font-size: 0.85rem;
                padding: 0 5px;
                background: #ffffff;
                color: #007bff;
            }
            
            textarea.form-control {
                min-height: 150px;
                resize: vertical;
            }
            
            .submit-btn {
                padding: 15px 30px;
                background: linear-gradient(135deg, #007bff, #0056b3);
                color: #ffffff;
                border: none;
                border-radius: 12px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }
            
            .submit-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            }
            
            .submit-btn::after {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                transition: 0.5s;
            }
            
            .submit-btn:hover::after {
                left: 100%;
            }
            /* Form Grid Layout */
            
            .form-row {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            /* Form Success/Error Messages */
            
            .form-message {
                padding: 15px 20px;
                border-radius: 12px;
                margin-top: 20px;
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 0.95rem;
            }
            
            .form-message.success {
                background: #e8f5e9;
                color: #2e7d32;
                border: 1px solid #a5d6a7;
            }
            
            .form-message.error {
                background: #fbe9e7;
                color: #c62828;
                border: 1px solid #ffab91;
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                .contact-form {
                    padding: 30px 20px;
                }
                .form-row {
                    grid-template-columns: 1fr;
                }
                .submit-btn {
                    width: 100%;
                }
            }
            /* Form Icons */
            
            .form-group i {
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: #666;
                transition: all 0.3s ease;
            }
            
            .form-group.message i {
                top: 25px;
            }
            
            .form-control:focus~i {
                color: #007bff;
            }
            /* Loading State */
            
            .submit-btn.loading {
                background: #e0e0e0;
                pointer-events: none;
            }
            
            .submit-btn.loading::before {
                content: '';
                width: 20px;
                height: 20px;
                border: 3px solid #ffffff;
                border-top-color: transparent;
                border-radius: 50%;
                display: inline-block;
                animation: spin 1s linear infinite;
                margin-right: 10px;
                vertical-align: middle;
            }
            
            @keyframes spin {
                to {
                    transform: rotate(360deg);
                }
            }
            /* Footer Styles */
            
            footer {
                text-align: center;
                padding: 20px;
                background: #333;
                color: white;
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                nav {
                    flex-direction: column;
                    padding: 20px;
                }
                nav ul {
                    flex-direction: column;
                    text-align: center;
                    margin-top: 20px;
                }
                section {
                    padding: 40px 20px;
                }
            }
            /* Simplified About Section Styles */
            
            #about {
                padding: 80px 0;
                background: #ffffff;
            }
            
            .section-header {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
                color: #2c2c2c;
                margin-bottom: 15px;
            }
            
            .section-line {
                width: 80px;
                height: 4px;
                background: #007bff;
                margin: 0 auto;
                border-radius: 2px;
            }
            
            .about-container {
                max-width: 900px;
                margin: 0 auto;
                padding: 0 20px;
            }
            
            .about-content {
                width: 100%;
            }
            
            .about-description {
                font-size: 1.2rem;
                line-height: 1.8;
                color: #444;
                text-align: justify;
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                #about {
                    padding: 60px 0;
                }
                .section-header h2 {
                    font-size: 2rem;
                }
                .about-description {
                    font-size: 1.1rem;
                    text-align: left;
                }
            }
            /* Education Section Styles */
            
            #education {
                padding: 100px 0;
                background: #f8f9fa;
            }
            
            .education-container {
                max-width: 900px;
                margin: 0 auto;
                padding: 0 20px;
            }
            
            .education-timeline {
                position: relative;
                padding: 40px 0;
            }
            
            .education-timeline::before {
                content: '';
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 100%;
                background: #007bff;
                opacity: 0.3;
            }
            
            .timeline-item {
                position: relative;
                margin-bottom: 60px;
            }
            
            .timeline-item:last-child {
                margin-bottom: 0;
            }
            
            .timeline-dot {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: #007bff;
                border: 4px solid #fff;
                box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
            }
            
            .timeline-content {
                position: relative;
                width: calc(50% - 50px);
                padding: 30px;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: transform 0.3s ease;
            }
            
            .timeline-item:nth-child(odd) .timeline-content {
                margin-left: auto;
            }
            
            .timeline-content:hover {
                transform: translateY(-5px);
            }
            
            .timeline-header {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
                color: #007bff;
            }
            
            .timeline-header i {
                font-size: 24px;
                margin-right: 10px;
            }
            
            .timeline-date {
                font-size: 1rem;
                font-weight: 600;
            }
            
            .timeline-content h3 {
                font-size: 1.4rem;
                color: #2c2c2c;
                margin-bottom: 10px;
            }
            
            .timeline-content h4 {
                font-size: 1.1rem;
                color: #666;
                margin-bottom: 15px;
            }
            
            .timeline-content p {
                color: #777;
                line-height: 1.6;
                margin-bottom: 15px;
            }
            
            .timeline-status {
                display: flex;
                justify-content: flex-end;
            }
            
            .status-badge {
                display: inline-block;
                padding: 5px 15px;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 600;
                background: rgba(0, 123, 255, 0.1);
                color: #007bff;
            }
            
            .status-badge.completed {
                background: rgba(40, 167, 69, 0.1);
                color: #28a745;
            }
            
            .status-badge.achievement {
                background: rgba(255, 193, 7, 0.1);
                color: #ffc107;
            }
            
            .timeline-description {
                color: #666;
                line-height: 1.8;
                margin-bottom: 15px;
            }
            
            .timeline-list {
                list-style: none;
                padding: 0;
                margin: 0 0 20px 0;
            }
            
            .timeline-list li {
                color: #555;
                margin-bottom: 10px;
                padding-left: 25px;
                position: relative;
                display: flex;
                align-items: center;
            }
            
            .timeline-list li i {
                color: #28a745;
                font-size: 14px;
                margin-right: 10px;
            }
            
            .timeline-content h3 {
                color: #1a1a1a;
                font-size: 1.4rem;
                margin-bottom: 10px;
                line-height: 1.4;
            }
            
            .timeline-content h4 {
                color: #007bff;
                font-size: 1.1rem;
                margin-bottom: 15px;
                font-weight: 600;
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                .education-timeline::before {
                    left: 30px;
                }
                .timeline-dot {
                    left: 30px;
                    transform: none;
                }
                .timeline-content {
                    width: calc(100% - 80px);
                    margin-left: 80px !important;
                }
                .timeline-header {
                    flex-wrap: wrap;
                }
            }
            
            @media (max-width: 576px) {
                .timeline-content {
                    padding: 20px;
                }
                .timeline-content h3 {
                    font-size: 1.2rem;
                }
                .timeline-content h4 {
                    font-size: 1rem;
                }
                .timeline-list li {
                    font-size: 0.95rem;
                }
                .timeline-description {
                    font-size: 0.95rem;
                }
            }
            /* Enhanced Achievements Section Styles */
            
            #achievements {
                padding: 100px 0;
                background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            }
            
            .section-subtitle {
                display: block;
                color: #007bff;
                font-size: 1rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 10px;
            }
            
            .achievements-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
            
            .achievements-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
                gap: 40px;
                margin-top: 40px;
            }
            
            .achievement-card {
                background: #ffffff;
                border-radius: 20px;
                padding: 0;
                transition: all 0.4s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                overflow: hidden;
            }
            
            .achievement-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            }
            
            .achievement-header {
                background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                padding: 30px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .achievement-icon-wrapper {
                position: relative;
            }
            
            .achievement-icon {
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, #007bff, #00d2ff);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            }
            
            .achievement-icon i {
                font-size: 32px;
                color: white;
            }
            
            .achievement-counter {
                text-align: right;
            }
            
            .counter-number {
                font-size: 3rem;
                font-weight: 700;
                color: #2c2c2c;
                line-height: 1;
                margin-bottom: 5px;
            }
            
            .counter-label {
                color: #666;
                font-size: 1rem;
            }
            
            .achievement-body {
                padding: 30px;
            }
            
            .achievement-body h3 {
                color: #2c2c2c;
                font-size: 1.5rem;
                margin-bottom: 25px;
                font-weight: 600;
            }
            
            .achievement-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .achievement-list li {
                display: flex;
                gap: 15px;
                margin-bottom: 25px;
            }
            
            .achievement-list li:last-child {
                margin-bottom: 0;
            }
            
            .check-icon {
                flex-shrink: 0;
                width: 24px;
                height: 24px;
                background: rgba(40, 167, 69, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .check-icon i {
                color: #28a745;
                font-size: 12px;
            }
            
            .list-content h4 {
                color: #2c2c2c;
                font-size: 1.1rem;
                margin-bottom: 5px;
                font-weight: 600;
            }
            
            .list-content p {
                color: #666;
                font-size: 0.95rem;
                line-height: 1.6;
                margin: 0;
            }
            /* Card Color Variations */
            
            .achievement-card:nth-child(2) .achievement-icon {
                background: linear-gradient(135deg, #ff6b6b, #ffd93d);
            }
            
            .achievement-card:nth-child(3) .achievement-icon {
                background: linear-gradient(135deg, #6c5ce7, #a8a4e6);
            }
            /* Counter Animation */
            
            @keyframes countUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .counter-number.animate {
                animation: countUp 1s ease forwards;
            }
            /* Responsive Design */
            
            @media (max-width: 1024px) {
                .achievements-grid {
                    grid-template-columns: 1fr;
                }
            }
            
            @media (max-width: 768px) {
                .achievement-header {
                    padding: 20px;
                }
                .achievement-icon {
                    width: 60px;
                    height: 60px;
                }
                .achievement-icon i {
                    font-size: 28px;
                }
                .counter-number {
                    font-size: 2.5rem;
                }
                .achievement-body {
                    padding: 20px;
                }
            }
            
            @media (max-width: 576px) {
                .achievements-grid {
                    gap: 30px;
                }
                .achievement-body h3 {
                    font-size: 1.3rem;
                }
                .list-content h4 {
                    font-size: 1rem;
                }
            }
            /* Skills Section Styles */
            
            #skills {
                padding: 100px 0;
                background: #ffffff;
            }
            
            .skills-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
            
            .skills-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 40px;
                margin-top: 50px;
            }
            
            .skill-category {
                background: #f8f9fa;
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }
            
            .skill-category:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
            
            .skill-category h3 {
                color: #2c2c2c;
                font-size: 1.3rem;
                margin-bottom: 25px;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            .skill-category h3 i {
                color: #007bff;
                font-size: 1.4rem;
            }
            
            .skill-items {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            
            .skill-item {
                width: 100%;
            }
            
            .skill-info {
                display: flex;
                justify-content: space-between;
                margin-bottom: 8px;
                font-size: 0.95rem;
                color: #555;
            }
            
            .progress-bar {
                height: 8px;
                background: #e9ecef;
                border-radius: 4px;
                overflow: hidden;
            }
            
            .progress {
                height: 100%;
                background: linear-gradient(to right, #007bff, #00d2ff);
                border-radius: 4px;
                transition: width 1s ease;
                width: 0;
            }
            /* Progress Bar Color Variations */
            
            .skill-category:nth-child(1) .progress {
                background: linear-gradient(to right, #007bff, #00d2ff);
            }
            
            .skill-category:nth-child(2) .progress {
                background: linear-gradient(to right, #ff6b6b, #ffd93d);
            }
            
            .skill-category:nth-child(3) .progress {
                background: linear-gradient(to right, #6c5ce7, #a8a4e6);
            }
            /* Animation for Progress Bars */
            
            @keyframes fillProgress {
                from {
                    width: 0;
                }
                to {
                    width: var(--progress);
                }
            }
            
            .progress.animate {
                animation: fillProgress 1.5s ease forwards;
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                .skills-grid {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }
                .skill-category {
                    padding: 25px;
                }
                .skill-category h3 {
                    font-size: 1.2rem;
                }
            }
            
            @media (max-width: 576px) {
                .skill-info {
                    font-size: 0.9rem;
                }
            }
            /* Add these new styles for research category */
            
            .research-category {
                background: linear-gradient(145deg, #f8f9fa, #ffffff);
                border: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .research-summary {
                margin-top: 30px;
                padding-top: 20px;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .research-summary h4 {
                color: #2c2c2c;
                font-size: 1.1rem;
                margin-bottom: 20px;
                font-weight: 600;
            }
            
            .research-projects {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            
            .research-project {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                padding: 15px;
                background: rgba(255, 255, 255, 0.8);
                border-radius: 10px;
                transition: all 0.3s ease;
            }
            
            .research-project:hover {
                transform: translateX(5px);
                background: #ffffff;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            }
            
            .research-project i {
                color: #007bff;
                font-size: 1.2rem;
                padding: 10px;
                background: rgba(0, 123, 255, 0.1);
                border-radius: 8px;
            }
            
            .project-info h5 {
                color: #2c2c2c;
                font-size: 1rem;
                margin-bottom: 5px;
                font-weight: 600;
            }
            
            .project-info p {
                color: #666;
                font-size: 0.9rem;
                line-height: 1.5;
                margin: 0;
            }
            /* Update progress bar color for research category */
            
            .research-category .progress {
                background: linear-gradient(to right, #4e54c8, #8f94fb);
            }
            /* Responsive adjustments */
            
            @media (max-width: 768px) {
                .research-project {
                    padding: 12px;
                }
                .research-summary h4 {
                    font-size: 1rem;
                }
                .project-info h5 {
                    font-size: 0.95rem;
                }
                .project-info p {
                    font-size: 0.85rem;
                }
            }
            /* Update the existing progress bar variations */
            
            .skill-category:nth-child(4) .progress {
                background: linear-gradient(to right, #4e54c8, #8f94fb);
            }
            /* Certificates Section Styles */
            
            #certificates {
                padding: 100px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
                overflow: hidden;
            }
            
            .certificates-gallery {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                position: relative;
            }
            
            .gallery-scroll-container {
                width: 100%;
                height: 80vh;
                overflow-y: auto;
                overflow-x: hidden;
                padding: 20px 0;
                display: flex;
                flex-direction: column;
                scrollbar-width: thin;
                scrollbar-color: #007bff #f0f0f0;
            }
            
            .gallery-scroll-container::-webkit-scrollbar {
                width: 8px;
            }
            
            .gallery-scroll-container::-webkit-scrollbar-track {
                background: #f0f0f0;
                border-radius: 4px;
            }
            
            .gallery-scroll-container::-webkit-scrollbar-thumb {
                background: #007bff;
                border-radius: 4px;
            }
            
            .cert-row {
                display: flex;
                gap: 30px;
                margin-bottom: 30px;
                padding: 0 20px;
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInDown 0.5s ease forwards;
            }
            
            @keyframes fadeInDown {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .cert-row:last-child {
                margin-bottom: 0;
            }
            
            .cert-item {
                width: calc(50% - 15px);
                height: 350px;
                background: #ffffff;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                cursor: pointer;
            }
            
            .cert-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }
            
            .cert-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }
            
            .cert-item:hover .cert-image {
                transform: scale(1.05);
            }
            /* Scroll Progress Styles */
            
            .scroll-progress-container {
                width: 4px;
                height: 80vh;
                background: rgba(0, 0, 0, 0.1);
                border-radius: 2px;
                position: fixed;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .scroll-progress {
                width: 100%;
                background: linear-gradient(to top, #007bff, #00c6ff);
                border-radius: 2px;
                height: 0;
                transition: height 0.3s ease;
                position: absolute;
                bottom: 0;
            }
            /* Modal Styles */
            
            .modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.9);
                z-index: 1000;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            
            .modal.show {
                display: flex;
                justify-content: center;
                align-items: center;
                opacity: 1;
            }
            
            .modal img {
                max-width: 90%;
                max-height: 90vh;
                border-radius: 10px;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            }
            
            .close-modal {
                position: absolute;
                top: 20px;
                right: 20px;
                color: white;
                font-size: 30px;
                cursor: pointer;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                transition: background 0.3s ease;
            }
            
            .close-modal:hover {
                background: rgba(255, 255, 255, 0.2);
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                .gallery-scroll-container {
                    height: 70vh;
                }
                .cert-row {
                    flex-direction: column;
                    gap: 20px;
                }
                .cert-item {
                    width: 100%;
                    height: 250px;
                }
                .scroll-progress-container {
                    display: none;
                }
            }
            
            @media (max-width: 576px) {
                .cert-item {
                    width: 250px;
                    height: 175px;
                }
            }
            /* Category Styling */
            
            .cert-category {
                background: #ffffff;
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                border: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .cert-category:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            }
            
            .cert-category.special {
                background: linear-gradient(135deg, #f8f9fa, #ffffff);
                border: 2px solid rgba(0, 123, 255, 0.1);
            }
            /* Category Header */
            
            .cert-category-header {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 30px;
                padding-bottom: 20px;
                border-bottom: 2px solid rgba(0, 0, 0, 0.05);
            }
            
            .header-icon {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #007bff, #00c6ff);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .header-icon i {
                font-size: 28px;
                color: #ffffff;
            }
            
            .header-text h3 {
                font-size: 1.5rem;
                color: #2c2c2c;
                margin-bottom: 5px;
            }
            
            .header-text p {
                color: #666;
                font-size: 0.95rem;
            }
            /* Certificate Items */
            
            .cert-items {
                display: grid;
                gap: 25px;
            }
            
            .cert-item {
                display: flex;
                gap: 20px;
                padding: 25px;
                background: #f8f9fa;
                border-radius: 15px;
                transition: all 0.3s ease;
            }
            
            .cert-item:hover {
                background: #ffffff;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
                transform: translateX(5px);
            }
            
            .cert-item.highlight {
                background: linear-gradient(135deg, #f8f9fa, #ffffff);
                border: 2px solid rgba(0, 123, 255, 0.1);
            }
            /* Certificate Icon */
            
            .cert-icon {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, #007bff, #00c6ff);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            
            .cert-icon i {
                font-size: 24px;
                color: #ffffff;
            }
            
            .cert-icon.python {
                background: linear-gradient(135deg, #4B8BBE, #FFE873);
            }
            
            .cert-icon.military {
                background: linear-gradient(135deg, #1e3c72, #2a5298);
            }
            
            .cert-icon.academic {
                background: linear-gradient(135deg, #11998e, #38ef7d);
            }
            /* Certificate Info */
            
            .cert-info {
                flex: 1;
            }
            
            .cert-info h4 {
                font-size: 1.2rem;
                color: #2c2c2c;
                margin-bottom: 10px;
            }
            
            .cert-meta {
                display: flex;
                gap: 20px;
                margin-bottom: 15px;
            }
            
            .cert-meta span {
                display: flex;
                align-items: center;
                gap: 5px;
                color: #666;
                font-size: 0.9rem;
            }
            
            .cert-meta i {
                color: #007bff;
            }
            /* Certificate Badge */
            
            .cert-badge {
                display: inline-block;
                padding: 5px 12px;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 600;
                margin-bottom: 10px;
            }
            
            .cert-badge.premium {
                background: rgba(0, 123, 255, 0.1);
                color: #007bff;
            }
            
            .cert-badge.academic {
                background: rgba(17, 153, 142, 0.1);
                color: #11998e;
            }
            /* Certificate Progress */
            
            .cert-progress {
                display: flex;
                align-items: center;
                gap: 15px;
                margin: 15px 0;
            }
            
            .progress-bar {
                flex: 1;
                height: 6px;
                background: #e9ecef;
                border-radius: 3px;
                overflow: hidden;
            }
            
            .progress {
                height: 100%;
                background: linear-gradient(to right, #007bff, #00c6ff);
                border-radius: 3px;
                transition: width 1s ease;
            }
            
            .status {
                font-size: 0.85rem;
                font-weight: 600;
            }
            
            .status.completed {
                color: #28a745;
            }
            /* Certificate Actions */
            
            .cert-actions {
                display: flex;
                gap: 15px;
                margin-top: 15px;
            }
            
            .view-cert,
            .verify-btn {
                padding: 8px 15px;
                border-radius: 20px;
                font-size: 0.9rem;
                display: flex;
                align-items: center;
                gap: 5px;
                transition: all 0.3s ease;
                cursor: pointer;
            }
            
            .view-cert {
                color: #007bff;
                background: rgba(0, 123, 255, 0.1);
                text-decoration: none;
            }
            
            .verify-btn {
                color: #28a745;
                background: rgba(40, 167, 69, 0.1);
                border: none;
            }
            
            .view-cert:hover,
            .verify-btn:hover {
                transform: translateY(-2px);
            }
            /* Certificate Description */
            
            .cert-description {
                color: #666;
                font-size: 0.95rem;
                line-height: 1.6;
                margin: 10px 0;
            }
            /* Statistics Section */
            
            .cert-statistics {
                max-width: 1200px;
                margin: 60px auto 0;
                padding: 0 30px;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }
            
            .stat-card {
                background: #ffffff;
                border-radius: 20px;
                padding: 30px;
                display: flex;
                align-items: center;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                position: relative;
                overflow: hidden;
            }
            
            .stat-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(to right, #007bff, #00c6ff);
            }
            
            .stat-icon {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #007bff, #00c6ff);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .stat-icon i {
                font-size: 28px;
                color: #ffffff;
            }
            
            .stat-info {
                flex: 1;
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                color: #2c2c2c;
                margin-bottom: 5px;
                background: linear-gradient(135deg, #007bff, #00c6ff);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            
            .stat-info p {
                color: #666;
                font-size: 1rem;
                margin: 0;
            }
            /* Circular Progress */
            
            .stat-progress {
                position: absolute;
                right: 30px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            .circular-chart {
                width: 50px;
                height: 50px;
                transform: rotate(-90deg);
            }
            
            .circle-bg {
                fill: none;
                stroke: #e9ecef;
                stroke-width: 2.8;
            }
            
            .circle {
                fill: none;
                stroke: url(#gradient);
                stroke-width: 2.8;
                stroke-linecap: round;
            }
            /* Responsive Design */
            
            @media (max-width: 768px) {
                .cert-category {
                    padding: 20px;
                }
                .cert-item {
                    flex-direction: column;
                    align-items: flex-start;
                }
                .cert-icon {
                    margin-bottom: 15px;
                }
                .cert-meta {
                    flex-direction: column;
                    gap: 10px;
                }
                .cert-actions {
                    flex-direction: column;
                    gap: 10px;
                }
                .stat-card {
                    padding: 20px;
                }
                .stat-progress {
                    display: none;
                }
            }
            
            @media (max-width: 576px) {
                .cert-category-header {
                    flex-direction: column;
                    align-items: flex-start;
                }
                .header-icon {
                    width: 50px;
                    height: 50px;
                }
                .header-icon i {
                    font-size: 24px;
                }
                .stat-number {
                    font-size: 2rem;
                }
            }
            /* Projects Section */
            
            #projects {
                padding: 80px 0;
                background: #ffffff;
            }
            
            .section-header {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
                color: #333;
                margin-bottom: 20px;
            }
            
            .section-line {
                width: 80px;
                height: 4px;
                background: #007bff;
                margin: 0 auto;
            }
            /* Projects Container */
            
            .projects-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                display: grid;
                grid-gap: 40px;
            }
            /* Project Card */
            
            .project-card {
                background: #ffffff;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
            }
            
            .project-card:hover {
                transform: translateY(-10px);
            }
            /* Project Image */
            
            .project-image {
                width: 100%;
                height: 300px;
                overflow: hidden;
            }
            
            .project-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            
            .project-card:hover .project-image img {
                transform: scale(1.1);
            }
            /* Project Details */
            
            .project-details {
                padding: 25px;
            }
            
            .project-details h3 {
                font-size: 1.8rem;
                color: #333;
                margin-bottom: 15px;
            }
            
            .project-tags {
                display: flex;
                gap: 10px;
                margin-bottom: 15px;
            }
            
            .project-tags span {
                padding: 5px 15px;
                background: #f0f4ff;
                color: #007bff;
                border-radius: 20px;
                font-size: 0.9rem;
            }
            
            .project-details p {
                color: #666;
                font-size: 1.1rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            /* Project Button */
            
            .project-btn {
                display: inline-block;
                padding: 12px 30px;
                background: #007bff;
                color: #ffffff;
                text-decoration: none;
                border-radius: 25px;
                font-weight: 500;
                transition: all 0.3s ease;
            }
            
            .project-btn:hover {
                background: #0056b3;
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            }
            /* Responsive Design */
            
            @media (min-width: 768px) {
                .projects-container {
                    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                }
            }
            
            @media (max-width: 767px) {
                .section-header h2 {
                    font-size: 2rem;
                }
                .project-card {
                    margin-bottom: 30px;
                }
                .project-image {
                    height: 250px;
                }
                .project-details h3 {
                    font-size: 1.5rem;
                }
                .project-details p {
                    font-size: 1rem;
                }
            }
            /* Client Feedback Section */
            
            #client-feedback {
                padding: 100px 0;
                background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            }
            
            .feedback-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 30px;
            }
            /* Feedback Row */
            
            .feedback-row {
                display: flex;
                justify-content: center;
                gap: 30px;
                margin-bottom: 30px;
            }
            /* Feedback Card */
            
            .feedback-card {
                flex: 1;
                max-width: calc(33.333% - 20px);
                background: #ffffff;
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
            }
            
            .feedback-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            }
            
            .feedback-card:hover .client-image img {
                transform: scale(1.05);
            }
            
            .client-image img {
                transition: transform 0.5s ease;
            }
            
            .client-profile {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 25px;
            }
            
            .client-image {
                width: 100px;
                height: 100px;
                border-radius: 15px;
                overflow: hidden;
                border: 3px solid #007bff;
            }
            
            .client-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .client-info {
                flex: 1;
            }
            
            .client-info h4 {
                font-size: 1.2rem;
                color: #333;
                margin-bottom: 5px;
            }
            
            .client-info span {
                display: block;
                color: #666;
                font-size: 0.9rem;
                margin-bottom: 10px;
            }
            /* Client Social Links */
            
            .client-social {
                display: flex;
                gap: 10px;
            }
            
            .social-link {
                width: 35px;
                height: 35px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 1rem;
                transition: all 0.3s ease;
            }
            
            .social-link:hover {
                transform: translateY(-3px);
            }
            
            .whatsapp {
                background: #25D366;
            }
            
            .facebook {
                background: #1877F2;
            }
            
            .telegram {
                background: #0088cc;
            }
            
            .linkedin {
                background: #0077B5;
            }
            
            .instagram {
                background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            }
            /* Rating */
            
            .rating {
                color: #ffd700;
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            /* Feedback Text */
            
            .feedback-text {
                color: #666;
                font-size: 1rem;
                line-height: 1.6;
                font-style: italic;
            }
            /* Responsive Design */
            
            @media (max-width: 1200px) {
                .feedback-row {
                    flex-wrap: wrap;
                }
                .feedback-card {
                    max-width: calc(50% - 15px);
                }
            }
            
            @media (max-width: 768px) {
                .feedback-card {
                    max-width: 100%;
                }
                .client-profile {
                    flex-direction: column;
                    text-align: center;
                }
                .client-social {
                    justify-content: center;
                }
            }
            /* Contact Section */
            
            #contact {
                padding: 120px 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
                position: relative;
                overflow: hidden;
            }
            /* Header Styles */
            
            .contact-header {
                text-align: center;
                margin-bottom: 80px;
                position: relative;
            }
            
            .header-content {
                margin-bottom: 50px;
            }
            
            .section-subtitle {
                background: linear-gradient(135deg, #007bff, #00c6ff);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                font-size: 1.2rem;
                font-weight: 600;
                margin-bottom: 15px;
                display: inline-block;
            }
            
            .contact-header h2 {
                font-size: 3rem;
                color: #2c2c2c;
                margin-bottom: 20px;
                font-weight: 700;
            }
            
            .header-description {
                color: #666;
                font-size: 1.1rem;
                max-width: 600px;
                margin: 0 auto;
            }
            /* Stats Section */
            
            .contact-stats {
                display: flex;
                justify-content: center;
                gap: 60px;
                margin-top: 40px;
            }
            
            .stat-item {
                text-align: center;
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                color: #007bff;
                display: block;
                margin-bottom: 10px;
            }
            
            .stat-label {
                color: #666;
                font-size: 1rem;
            }
            /* Container Layout */
            
            .contact-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 30px;
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 50px;
            }
            /* Left Side - Contact Info */
            
            .contact-info-box {
                background: #ffffff;
                border-radius: 30px;
                padding: 40px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            }
            
            .info-header {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 30px;
            }
            
            .info-header i {
                font-size: 2rem;
                color: #007bff;
            }
            
            .info-header h3 {
                font-size: 1.8rem;
                color: #2c2c2c;
            }
            /* Location Cards */
            
            .location-cards {
                display: grid;
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .location-card {
                background: #f8f9fa;
                border-radius: 20px;
                padding: 25px;
                position: relative;
                transition: all 0.3s ease;
            }
            
            .location-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }
            
            .location-badge {
                position: absolute;
                top: 15px;
                right: 15px;
                padding: 5px 15px;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 600;
            }
            
            .current .location-badge {
                background: #e1f5fe;
                color: #0288d1;
            }
            
            .permanent .location-badge {
                background: #f3e5f5;
                color: #7b1fa2;
            }
            
            .location-card h4 {
                color: #2c2c2c;
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .location-card p {
                color: #666;
                line-height: 1.6;
                margin-bottom: 15px;
            }
            
            .map-link {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: #007bff;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
            }
            
            .map-link:hover {
                color: #0056b3;
                transform: translateX(5px);
            }
            /* Contact Methods */
            
            .contact-methods {
                display: grid;
                gap: 20px;
            }
            
            .method-card {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                padding: 25px;
                background: #f8f9fa;
                border-radius: 20px;
                transition: all 0.3s ease;
            }
            
            .method-card:hover {
                background: #ffffff;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }
            
            .method-card i {
                font-size: 1.5rem;
                color: #007bff;
            }
            
            .method-details {
                flex: 1;
            }
            
            .method-details h4 {
                color: #2c2c2c;
                font-size: 1.1rem;
                margin-bottom: 8px;
            }
            
            .method-details p {
                color: #666;
                margin-bottom: 15px;
            }
            
            .method-actions {
                display: flex;
                gap: 10px;
            }
            
            .action-button {
                padding: 8px 20px;
                border-radius: 20px;
                text-decoration: none;
                font-size: 0.9rem;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
            }
            
            .action-button.call {
                background: #e3f2fd;
                color: #1976d2;
            }
            
            .action-button.whatsapp {
                background: #e8f5e9;
                color: #2e7d32;
            }
            
            .action-button.mail {
                background: #e8eaf6;
                color: #3f51b5;
            }
            
            .action-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            /* Right Side - Contact Form */
            
            .form-box {
                background: #ffffff;
                border-radius: 30px;
                padding: 40px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            }
            
            .form-header {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .form-badge {
                background: linear-gradient(135deg, #e3f2fd, #bbdefb);
                color: #1976d2;
                padding: 8px 20px;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 600;
                display: inline-block;
                margin-bottom: 15px;
            }
            
            .form-header h3 {
                font-size: 2.2rem;
                color: #2c2c2c;
                margin-bottom: 10px;
                font-weight: 700;
            }
            
            .form-header p {
                color: #666;
                font-size: 1.1rem;
            }
            
            .animated-form .input-group {
                position: relative;
                margin-bottom: 25px;
            }
            
            .input-group {
                position: relative;
                margin-bottom: 25px;
            }
            
            .input-group label {
                position: absolute;
                left: 45px;
                top: 50%;
                transform: translateY(-50%);
                color: #666;
                font-size: 0.95rem;
                pointer-events: none;
                transition: all 0.3s ease;
                background: transparent;
                padding: 0 5px;
            }
            
            .input-group.message-group label {
                top: 25px;
            }
            
            .input-group input,
            .input-group textarea {
                width: 100%;
                padding: 15px 45px;
                border: 2px solid #e9ecef;
                border-radius: 15px;
                font-size: 1rem;
                transition: all 0.3s ease;
                background: #f8f9fa;
                color: #2c2c2c;
            }
            
            .input-group input:focus,
            .input-group textarea:focus {
                border-color: #007bff;
                background: #ffffff;
                box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
            }
            
            .input-group input:focus+label,
            .input-group textarea:focus+label,
            .input-group input:not(:placeholder-shown)+label,
            .input-group textarea:not(:placeholder-shown)+label {
                top: -12px;
                left: 15px;
                font-size: 0.85rem;
                color: #007bff;
                background: #ffffff;
            }
            
            .input-group textarea {
                height: 150px;
                resize: none;
                padding-top: 20px;
                line-height: 1.5;
            }
            
            .input-icon {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: #666;
                font-size: 1.2rem;
                z-index: 1;
            }
            
            .message-group .input-icon {
                top: 25px;
                transform: none;
            }
            /* Form Submit Button */
            
            .submit-btn {
                width: 100%;
                padding: 15px 30px;
                background: linear-gradient(135deg, #007bff, #0056b3);
                color: #ffffff;
                border: none;
                border-radius: 12px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            
            .submit-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            }
            /* Form Header Styles */
            
            .form-header {
                text-align: center;
                margin-bottom: 40px;
            }
            
            .form-header h3 {
                font-size: 2rem;
                color: #2c2c2c;
                margin-bottom: 10px;
                font-weight: 700;
            }
            
            .form-header p {
                color: #666;
                font-size: 1rem;
                line-height: 1.6;
                margin: 0 auto;
                max-width: 500px;
            }
            /* Placeholder Styles */
            
            .input-group input::placeholder,
            .input-group textarea::placeholder {
                color: transparent;
            }
            /* Error State */
            
            .input-group.error input,
            .input-group.error textarea {
                border-color: #dc3545;
            }
            
            .input-group.error label {
                color: #dc3545;
            }
            /* Success Message */
            
            .form-message {
                margin-top: 20px;
                padding: 15px;
                border-radius: 12px;
                font-size: 0.95rem;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            .form-message.success {
                background: #e8f5e9;
                color: #2e7d32;
                border: 1px solid #a5d6a7;
            }
            /* Responsive Adjustments */
            
            @media (max-width: 768px) {
                .input-group input,
                .input-group textarea {
                    padding: 12px 40px;
                    font-size: 0.95rem;
                }
                .input-group label {
                    font-size: 0.9rem;
                }
                .form-header h3 {
                    font-size: 1.8rem;
                }
            }
            /* Live Chat Widget Styles */
            
            .chat-widget {
                position: fixed;
                bottom: 100px;
                right: 30px;
                width: 350px;
                height: 500px;
                background: #fff;
                border-radius: 15px;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
                transform: scale(0);
                opacity: 0;
                transform-origin: bottom right;
                transition: all 0.3s ease;
                overflow: hidden;
                z-index: 1000;
            }
            
            .chat-widget.active {
                transform: scale(1);
                opacity: 1;
            }
            
            .chat-header {
                background: linear-gradient(135deg, #1e3c72, #2a5298);
                color: #fff;
                padding: 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .chat-title {
                display: flex;
                align-items: center;
                gap: 10px;
            }
            
            .chat-title i {
                font-size: 24px;
            }
            
            .chat-title h3 {
                margin: 0;
                font-size: 18px;
                font-weight: 500;
            }
            
            .chat-status {
                font-size: 14px;
                display: flex;
                align-items: center;
                gap: 5px;
            }
            
            .chat-status::before {
                content: "";
                width: 8px;
                height: 8px;
                background: #4CAF50;
                border-radius: 50%;
                display: inline-block;
            }
            
            .chat-messages {
                height: calc(100% - 140px);
                padding: 20px;
                overflow-y: auto;
                background: #f5f7fb;
            }
            
            .chat-messages::-webkit-scrollbar {
                width: 6px;
            }
            
            .chat-messages::-webkit-scrollbar-track {
                background: #f1f1f1;
            }
            
            .chat-messages::-webkit-scrollbar-thumb {
                background: #888;
                border-radius: 3px;
            }
            
            .message {
                margin-bottom: 15px;
                max-width: 80%;
                animation: messageSlide 0.3s ease;
            }
            
            .message.sent {
                margin-left: auto;
            }
            
            .message-content {
                padding: 12px 16px;
                border-radius: 15px;
                font-size: 14px;
                line-height: 1.4;
            }
            
            .sent .message-content {
                background: #1e3c72;
                color: #fff;
                border-bottom-right-radius: 5px;
            }
            
            .received .message-content {
                background: #fff;
                color: #333;
                border-bottom-left-radius: 5px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            }
            
            .message-time {
                font-size: 11px;
                color: #999;
                margin-top: 5px;
                text-align: right;
            }
            
            .typing-indicator {
                display: none;
                padding: 12px 16px;
                background: #fff;
                border-radius: 15px;
                margin-bottom: 15px;
                width: fit-content;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            }
            
            .typing-indicator.active {
                display: flex;
                gap: 5px;
                align-items: center;
            }
            
            .typing-dot {
                width: 8px;
                height: 8px;
                background: #1e3c72;
                border-radius: 50%;
                animation: typingBounce 1s infinite;
            }
            
            .typing-dot:nth-child(2) {
                animation-delay: 0.2s;
            }
            
            .typing-dot:nth-child(3) {
                animation-delay: 0.4s;
            }
            
            .chat-input {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 15px;
                background: #fff;
                border-top: 1px solid #eee;
                display: flex;
                gap: 10px;
            }
            
            .message-input {
                flex: 1;
                padding: 12px;
                border: 1px solid #ddd;
                border-radius: 25px;
                outline: none;
                font-size: 14px;
                transition: border-color 0.3s ease;
            }
            
            .message-input:focus {
                border-color: #1e3c72;
            }
            
            .send-button {
                width: 40px;
                height: 40px;
                border: none;
                border-radius: 50%;
                background: linear-gradient(135deg, #1e3c72, #2a5298);
                color: #fff;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.2s ease;
            }
            
            .send-button:hover {
                transform: scale(1.05);
            }
            
            .chat-toggle {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #1e3c72, #2a5298);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .chat-toggle:hover {
                transform: scale(1.1);
            }
            
            .chat-toggle i {
                color: #fff;
                font-size: 24px;
            }
            
            @keyframes messageSlide {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            @keyframes typingBounce {
                0%,
                60%,
                100% {
                    transform: translateY(0);
                }
                30% {
                    transform: translateY(-4px);
                }
            }
            
            @media (max-width: 576px) {
                .chat-widget {
                    width: 100%;
                    height: 100%;
                    bottom: 0;
                    right: 0;
                    border-radius: 0;
                }
                .chat-toggle {
                    width: 50px;
                    height: 50px;
                    bottom: 20px;
                    right: 20px;
                }
                .chat-toggle i {
                    font-size: 20px;
                }
            }