*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
 :root {
            --primary-blue: #3498db;
            --dark-blue: #2980b9;
            --dark-accent: #2c3e50;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --border-radius: 12px;
            --box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        /* Enhanced Header Styles */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: relative;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            width: 52px;
            height: 52px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            background: #fff;
            display: inline-block;
            margin-right: 12px;
            vertical-align: middle;
            border: 2px solid #e0e0e0;
            transition: transform 0.2s;
        }
        
        .logo-img:hover {
            transform: scale(1.07) rotate(-2deg);
            box-shadow: 0 4px 16px rgba(44,83,100,0.18);
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--dark-accent), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }
        
        .logo:hover {
            transform: scale(1.02);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--dark-accent);
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-link i {
            font-size: 0.9rem;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: var(--transition);
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-blue);
        }
        
        .contact-btn {
            background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }
        
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
        }
        
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-accent);
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Header Scrolled State */
        header.scrolled {
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.95);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .mobile-nav-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                padding: 80px 2rem 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .contact-btn {
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
        }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('power-limitation-and-zero-export-1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    margin: 0 auto;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3498db;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1.5rem auto 2rem;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #203a43 0%, #2c5364 100%);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(32,58,67,0.10);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    margin-top: 18px;
}

.cta-button:hover, .cta-button:focus {
    background: linear-gradient(90deg, #2c5364 0%, #203a43 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(32,58,67,0.18);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 600px) {
    .cta-button {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        border-radius: 24px;
        margin-top: 14px;
    }
}

@media (max-width: 375px) {
    .cta-button {
        display: none;
    }
}
/* Vision Section Styles */
.vision-section {
    padding: 6rem 2rem;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.95), rgba(52, 152, 219, 0.95)), 
                url('WhatsApp\ Image\ 2025-06-09\ at\ 14.54.25_b07518b6.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 2;
}

.vision-label {
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.vision-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vision-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.separator-line {
    height: 2px;
    width: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.vision-separator i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

/* Add animation */
.vision-content {
    animation: fadeInUp 1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-section {
        padding: 4rem 1.5rem;
    }

    .vision-text {
        font-size: 2rem;
    }

    .vision-label {
        font-size: 1rem;
    }
}

/* Add subtle floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.vision-text {
    animation: float 6s ease-in-out infinite;
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: #f8f9fa;
    position: relative;
}

.section_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
}

.about-icons {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.icon-item {
    text-align: center;
}

.icon-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

/* Packages Section */
.packages {
    padding: 6rem 5%;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.package-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c3e50;
}

.package-card p {
    padding: 0 1.5rem;
    color: #666;
}

.features {
    list-style: none;
    padding: 1.5rem;
}

.features li {
    margin-bottom: 0.5rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path-to-pattern.png');
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #3498db;
}

.contact-item a:hover {
    color: #3498db !important;
    transition: color 0.3s ease;
}

/* Footer */
.footer {
    background: linear-gradient(to right, #1a1a1a, #2c3e50);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.6s;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    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-link:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #a0aec0;
}

.contact-info i {
    color: #3498db;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #a0aec0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .package-card, .contact-content {
    animation: fadeIn 1s ease-out;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 5%;
    background: #fff;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #3498db;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
    color: white;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    transform: translateY(-2px);
}

/* Video Portfolio Item */
.portfolio-video {
    position: relative;
    height: 300px;
    background: white;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.portfolio-video:hover video {
    opacity: 1;
}

.play-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-video-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #3498db;
}

.play-video-btn:hover {
    background: #3498db;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-video-btn:hover::before {
    border-color: transparent transparent transparent white;
}

.portfolio-video .portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Add this for video controls styling */
.portfolio-video video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.5);
}

.portfolio-video video::-webkit-media-controls-panel {
    display: flex !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-video:hover video::-webkit-media-controls-panel {
    opacity: 1;
}

/* Testimonials */
.testimonials {
    margin-top: 6rem;
    padding: 4rem 0;
    background: #f8f9fa;
    border-radius: 15px;
}
.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials{
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.client-info {
    position: relative;
    padding-top: 2rem;
}

.client-info::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #3498db;
    font-family: serif;
    opacity: 0.3;
}

.client-name {
    font-weight: 600;
    color: #2c3e50;
}

.project-type {
    color: #3498db;
    font-size: 0.9rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .portfolio-filters {
        flex-wrap: wrap;
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Enhanced Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    margin-bottom: 2rem;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: pulse 2s infinite;
}

.loader-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 1.5rem auto;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    animation: progress 2s ease-in-out infinite;
}

.loading-words {
    height: 30px;
    overflow: hidden;
    position: relative;
}

.word {
    display: block;
    height: 100%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    animation: slideWords 8s infinite;
}

/* Enhanced Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progress {
    0% {
        width: 0;
        opacity: 1;
    }
    50% {
        width: 100%;
        opacity: 0.5;
    }
    100% {
        width: 0;
        opacity: 1;
    }
}

@keyframes slideWords {
    0%, 15% {
        transform: translateY(0);
    }
    20%, 35% {
        transform: translateY(-30px);
    }
    40%, 55% {
        transform: translateY(-60px);
    }
    60%, 75% {
        transform: translateY(-90px);
    }
    80%, 95% {
        transform: translateY(-120px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Add shimmer effect */
.loader-text h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loader-text h2 {
        font-size: 1.5rem;
    }

    .loading-bar {
        width: 250px;
    }

    .word {
        font-size: 1rem;
    }
}

/* Add/Update these responsive styles */

/* General Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 4%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet and Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 4%;
    }

    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1000;
    }

    .mobile-nav-toggle::before {
        content: '☰';
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .contact-btn {
        margin-top: 1rem;
        width: 100%;
    }

    /* Hero Section Adjustments */
    .hero {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Vision Section */
    .vision-text {
        font-size: 2rem;
        padding: 0 1rem;
    }

    /* Portfolio Section */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* Contact Section */
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        width: 100%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-icons {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
    }

    .nav-menu {
        padding-top: 60px;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }
}

/* High-resolution Displays */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3rem;
    }
}
  

 /* Products CTA Section */
        .cta-products {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin: 3rem 0;
            border-radius: 12px;
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-products h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-products p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .ta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 1rem 2.5rem;
            background: white;
            color: #2c3e50;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .ta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background: #f8f9fa;
        }
        
        .back-btn {
            text-align: center;
            margin: 60px 0 30px;
        }
        
        .back-btn a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 30px;
            background: var(--dark-accent);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .back-btn a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }
        
