 :root {
            --primary-color: #0a192f;
            --secondary-color: #172a45;
            --accent-color: #64ffda;
            --text-color: #ccd6f6;
            --light-text: #e6f1ff;
            --dark-shadow: rgba(2, 12, 27, 0.7);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--light-text);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 1rem 5%;
            box-shadow: 0 10px 30px -10px var(--dark-shadow);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2.5rem;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .whatsapp-btn {
            background-color: #25D366;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            transition: var(--transition);
            font-weight: 500;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.8rem;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--primary-color), transparent);
            z-index: -1;
        }

        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--light-text);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 0.3s;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 0.6s;
        }

        .hero-btn {
            display: inline-block;
            background-color: transparent;
            color: var(--accent-color);
            padding: 1rem 2.5rem;
            border: 1px solid var(--accent-color);
            border-radius: 30px;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 0.9s;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .hero-btn:hover {
            background-color: rgba(100, 255, 218, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px -10px rgba(100, 255, 218, 0.3);
        }

        .hero-image {
            position: absolute;
            right: 5%;
            width: 45%;
            height: 85%;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInRight 1s ease forwards 1.2s;
            z-index: 1;
        }

        /* About Section */
        .section {
            padding: 8rem 10%;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--light-text);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 5rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            height: 450px;
            background-image: url(/Images/Company\ Logo.png);
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 20px 30px -15px var(--dark-shadow);
            position: relative;
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, var(--primary-color), transparent);
        }

        /* Portfolio Section */
        .portfolio {
            background-color: var(--secondary-color);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .portfolio-item {
            background-color: var(--primary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px -10px var(--dark-shadow);
            transition: var(--transition);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .portfolio-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 30px -15px var(--dark-shadow);
        }

        .portfolio-img {
            height: 280px;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 25, 47, 0.95), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: var(--transition);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .portfolio-category {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

           /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--light-text);
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 30px auto 0;
            color: var(--text-color);
            opacity: 0.8;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--secondary-color);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 50px -15px rgba(2, 12, 27, 0.5);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
        }

        .testimonial-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px -15px rgba(100, 255, 218, 0.2);
        }

        .quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 5rem;
            color: rgba(100, 255, 218, 0.1);
            z-index: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--light-text);
            position: relative;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 20px;
            border: 3px solid var(--accent-color);
            object-fit: cover;
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--light-text);
            margin-bottom: 5px;
        }

        .author-position {
            color: var(--accent-color);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .testimonial-highlight {
            color: var(--accent-color);
            font-weight: 600;
        }

        /* Decorative Elements */
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(100, 255, 218, 0.05) 0%, transparent 20%);
            pointer-events: none;
            z-index: -1;
        }

        /* Animation Controls */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .testimonials-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .testimonial-card {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }
            
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .testimonial-author {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .author-avatar {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }


        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .team-member {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 20px -10px var(--dark-shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-member:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 30px -15px var(--dark-shadow);
        }

        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 3px solid var(--accent-color);
            transition: var(--transition);
        }

        .team-member:hover .team-img {
            transform: scale(1.05);
        }

        .team-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--light-text);
        }

        .team-position {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .team-contact {
            margin-top: 1.5rem;
        }

        .team-contact a {
            color: var(--text-color);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-contact a i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .team-contact a:hover {
            color: var(--accent-color);
        }

        /* Contact Section */
        .contact {
            background-color: var(--secondary-color);
            padding-top: 6rem;
            padding-bottom: 6rem;
            position: relative;
        }

        #contact {
            scroll-margin-top: 100px;
        }

        .contact-container {
            display: flex;
            gap: 5rem;
            align-items: center;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--light-text);
            position: relative;
            display: inline-block;
        }

        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40%;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .contact-details {
            margin-bottom: 2.5rem;
        }


        .contact-details p {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            font-size: 1.1rem;
           
        }

        .contact-details i {
            margin-right: 1.2rem;
            color: var(--accent-color);
            width: 20px;
            text-align: center;
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: var(--text-color);
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        }

        .contact-form {
            flex: 1;
            background-color: var(--primary-color);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 15px 30px -15px var(--dark-shadow);
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--light-text);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background-color: var(--secondary-color);
            border: 1px solid rgba(100, 255, 218, 0.1);
            border-radius: 8px;
            color: var(--text-color);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 1.1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .submit-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #52d8b7;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px -10px rgba(100, 255, 218, 0.5);
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        /* Footer */
        footer {
            background-color: #0a1429;
            padding: 4rem 10% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.8rem;
            color: var(--light-text);
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--accent-color);
            font-size: 0.8rem;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            margin-bottom: 1.2rem;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            margin-right: 1rem;
            color: var(--accent-color);
            width: 20px;
            text-align: center;
            margin-top: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(204, 214, 246, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .copyright {
            color: var(--text-color);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
            margin-bottom: 1.5rem;
        }

        .footer-logo i {
            margin-right: 10px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Parallax Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }

        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 25, 47, 0.8);
        }

        .parallax-content {
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                flex-direction: column;
            }

            .hero-image {
                display: none;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 5%;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding-top: 6rem;
                transition: left 0.4s ease;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1.8rem 0;
            }

            .hamburger {
                display: block;
            }

            .section {
                padding: 6rem 5%;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.2rem;
            }
            
            .contact-form {
                padding: 1.8rem;
            }
        }