#automation-hero {
    background-image: url("images/smart\ h0me\ bac.jpg");
    height: 100vh;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: cardFlip 0.8s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(3deg);
    transition: all 0.3s ease;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: iconSpin 3s linear infinite;
}

/*
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.package-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
*/

/*
.package-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    z-index: 2;
}
*/

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/*
.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
*/

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

/*
.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}
*/

/*
.package-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.package-btn:hover {
    background: #2980b9;
}
*/

@media screen and (max-width: 768px) {
    /*
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    */
}

.animate-gradient {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-text {
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
}

.floating-icons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.floating-icons i {
    font-size: 2.5rem;
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

.float {
    animation: float 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.category-card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.category-card:hover .feature-image {
    transform: scale(1.05);
}

/*
.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: cardFlip 0.8s ease-out forwards;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.package-card.starter::before {
    background: linear-gradient(to right, #23a6d5, #23d5ab);
}

.package-card.premium::before {
    background: linear-gradient(to right, #ee7752, #e73c7e);
}

.package-card.luxury::before {
    background: linear-gradient(to right, #FFD700, #FFA500);
}
*/

.popular-tag {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #e73c7e;
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
}

/*
.package-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transition: 0.5s;
}

.package-btn:hover::before {
    left: 100%;
}
*/

/* Add these new animations */
@keyframes neonGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(52, 152, 219, 0.5),
                     0 0 20px rgba(52, 152, 219, 0.3),
                     0 0 30px rgba(52, 152, 219, 0.2);
    }
    50% { 
        text-shadow: 0 0 20px rgba(52, 152, 219, 0.8),
                     0 0 30px rgba(52, 152, 219, 0.6),
                     0 0 40px rgba(52, 152, 219, 0.4);
    }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cardFlip {
    0% { transform: perspective(1000px) rotateY(-90deg); opacity: 0; }
    100% { transform: perspective(1000px) rotateY(0); opacity: 1; }
}

/* Apply new animations to elements */
.smart-header h1 {
    animation: neonGlow 2s infinite;
}

/* Add more animations and styles as needed */

.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-btn {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.2);
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
}

@media screen and (max-width: 768px) {
    .quote-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.gradient-text {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-box:hover .feature-image img {
    transform: scale(1.1);
}

.hover-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transition: bottom 0.3s ease;
}

.feature-box:hover .hover-info {
    bottom: 0;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '→';
    margin-right: 0.8rem;
    color: var(--accent-color);
}

@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content {
        padding: 1.5rem;
    }
}

/* Add to existing styles */

.security-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.security-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.security-content h2 {
    font-size: 2.5rem;
    color: var(--smart-dark);
    margin-bottom: 2rem;
    position: relative;
}

.security-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--smart-accent);
    border-radius: 2px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
}

.security-item i {
    font-size: 2rem;
    color: var (--smart-accent);
    background: rgba(0, 245, 196, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.item-details h3 {
    font-size: 1.2rem;
    color: var(--smart-dark);
    margin-bottom: 0.5rem;
}

.item-details p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.security-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.security-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.security-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--smart-secondary);
}

.stat .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 1024px) {
    .security-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .security-image {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-content h2 {
        font-size: 2rem;
    }

    .security-image {
        height: 300px;
    }

    .stat .number {
        font-size: 1.5rem;
    }
}

/* Add to existing styles */

.categories-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.categories-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.category-row:last-child {
    margin-bottom: 0;
}

.category-row.reverse {
    direction: rtl;
}

.category-row.reverse .category-content {
    direction: ltr;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-content h3 i {
    color: var(--accent-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list li::before {
    content: '→';
    color: var(--accent-color);
}

.category-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-image:hover img {
    transform: scale(1.05);
}

.learn-more {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .category-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .category-row.reverse {
        direction: ltr;
    }

    .category-content {
        padding: 1rem;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }

    .category-image img {
        height: 300px;
    }

    .learn-more {
        width: 100%;
    }
}

/* Add to existing styles */

/*
.packages-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(52,152,219,0.1) 0%, transparent 70%),
                radial-gradient(circle at bottom left, rgba(231,76,60,0.1) 0%, transparent 70%);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.package-header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header.essential {
    background: linear-gradient(135deg, #20bf55 0%, #01baef 100%);
}

.package-header.premium {
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
}

.package-header.luxury {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon i {
    font-size: 2.5rem;
    color: white;
}

.package-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    margin-top: 1.5rem;
    color: white;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.price .duration {
    font-size: 1rem;
    opacity: 0.8;
}

.feature-category {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.feature-category:last-child {
    border-bottom: none;
}

.feature-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-category h4 i {
    color: var(--accent-color);
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category ul li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category ul li::before {
    content: '✓';
    color: #2ecc71;
}

.package-btn {
    width: 100%;
    padding: 1.2rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.popular-tag {
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.featured {
    transform: scale(1.05);
    z-index: 2;
}

.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

@media screen and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .featured {
        transform: scale(1);
    }

    .featured:hover {
        transform: translateY(-10px);
    }

    .section-title {
        font-size: 2rem;
    }

    .package-header {
        padding: 1.5rem;
    }
}
*/

/* Add to existing styles */

/*
.popular-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 3;
    transform: rotate(15deg);
    animation: pulse 2s infinite;
}
*/

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    /*
    .package-card.featured {
        transform: scale(1);
    }
    
    .popular-badge {
        top: -10px;
        right: -10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    */
}

/* Add to existing styles */

.feature-dropdown-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.feature-block {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.dropdown-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-header:hover {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
}

.dropdown-header i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.dropdown-header h3 {
    flex: 1;
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.arrow {
    transition: transform 0.3s ease;
}

.dropdown-header.active .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.dropdown-content.active {
    max-height: 500px;
}

.dropdown-content ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.dropdown-content li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    color: #666;
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.dropdown-content li i {
    width: 25px;
    margin-right: 1rem;
    color: var(--accent-color);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation delays for list items */
.dropdown-content li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-content li:nth-child(2) { animation-delay: 0.2s; }
.dropdown-content li:nth-child(3) { animation-delay: 0.3s; }
.dropdown-content li:nth-child(4) { animation-delay: 0.4s; }
.dropdown-content li:nth-child(5) { animation-delay: 0.5s; }

@media screen and (max-width: 768px) {
    .dropdown-header {
        padding: 1rem;
    }
    
    .dropdown-header h3 {
        font-size: 1.1rem;
    }
    
    .dropdown-content ul {
        padding: 1rem;
    }
}

/* Add these new styles for the modern navigation */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glass-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: navSlideDown 0.5s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    animation: logoSpin 0.5s ease;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-button {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.2);
    animation: pulseGlow 2s infinite;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animations */
@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes logoSpin {
    from {
        transform: rotate(-180deg);
    }
    to {
        transform: rotate(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 15px rgba(0, 184, 148, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 184, 148, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 184, 148, 0.2);
    }
}

/* Scroll behavior */
.modern-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .glass-nav {
        padding: 0.5rem 1rem;
        border-radius: 0;
    }

    .nav-list {
        display: none;
    }

    /* Add mobile menu button */
    .nav-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: #333;
        background: none;
        border: none;
        cursor: pointer;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 15px 0;
        text-align: center;
    }

    header {
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 0;
        height: 45px; /* Reduced from 60px */
    }

    nav {
        padding: 0 15px;
        height: 45px; /* Match header height */
        display: flex;
        align-items: center;
    }

    .logo {
        padding: 0;
    }

    .logo-img {
        height: 35px; /* Reduced from 50px */
        margin: 5px 0;
    }

    .mobile-menu-btn {
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        font-size: 20px;
        padding: 5px;
    }

    .nav-links {
        top: 45px; /* Match new header height */
    }

    /* Adjust body padding to match new header height */
    body {
        padding-top: 45px; /* Match header height */
    }
}

/* Additional adjustments for smaller screens */
@media screen and (max-width: 480px) {
    header {
        height: 40px; /* Even smaller for very small screens */
    }

    nav {
        height: 40px;
    }

    .logo-img {
        height: 30px;
    }

    .nav-links {
        top: 40px;
    }

    body {
        padding-top: 40px;
    }
}

/* ...existing code... */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    align-items: stretch;
}

.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;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.package-header {
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.package-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom right, transparent 49%, white 51%);
}

.package-header.basic {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.package-header.pro {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
}

.package-header.premium {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
}

.package-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.package-duration {
    font-size: 1.1rem;
    opacity: 0.9;
}

.package-features {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    background: white;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    font-size: 1.2rem;
}

.basic .feature-list li i {
    color: #00b09b;
}

.pro .feature-list li i {
    color: #8E2DE2;
}

.premium .feature-list li i {
    color: #FFD700;
}

.package-footer {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
}

.enquire-btn {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.enquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.enquire-btn:hover::before {
    left: 100%;
}

.basic .enquire-btn {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
}

.pro .enquire-btn {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: white;
}

.premium .enquire-btn {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #333;
}

.enquire-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Popular tag styling */
.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff4757;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

/* Mobile Responsive Slider */
@media screen and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 100%;
        padding: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 1.5rem;
    }

    .package-card {
        min-width: 300px;
        scroll-snap-align: center;
    }

    /* ...rest of mobile styles... */
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .logo-img {
        width: 120px !important;  /* Reduced from 180px */
        height: 35px !important;  /* Added fixed height */
        object-fit: contain;  /* Ensure logo fits properly */
    }

    header nav {
        padding: 10px 15px;  /* Reduced padding */
        min-height: 60px;  /* Reduced height */
    }

    .nav-links {
        top: 60px;  /* Adjusted to match new header height */
    }

    .mobile-menu-btn {
        font-size: 24px;  /* Reduced from 32px */
        padding: 6px 10px;  /* Reduced padding */
    }
}

/* Even smaller screens */
@media screen and (max-width: 480px) {
    .logo-img {
        width: 100px !important;  /* Even smaller for very small screens */
        height: 45px !important;
    }
}

/* ...existing code... */

/* Add to your existing CSS */

.contact-form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group:last-child {
    grid-column: 1 / -1;
}

.quote-form label {
    font-weight: 500;
    color: #333;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.quote-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    grid-column: 1 / -1;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 176, 155, 0.3);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .quote-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-section {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .form-group {
        grid-column: 1 / -1;
    }
}

/* ...existing code... */

/* Add to your existing CSS */

/* Update Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 400px; /* Reduced from 600px */
    margin: 40px auto;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
    max-height: 85vh; /* Reduced height */
    overflow-y: auto;
}

.modal .quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Reduced gap */
}

.modal .form-group {
    margin-bottom: 0.5rem; /* Reduced margin */
}

.modal .form-group label {
    font-size: 0.9rem; /* Smaller font */
    margin-bottom: 0.2rem;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    padding: 0.5rem; /* Reduced padding */
    font-size: 0.9rem; /* Smaller font */
}

.modal .form-group textarea {
    min-height: 60px; /* Reduced height */
}

.modal .submit-btn {
    padding: 0.8rem 1.5rem; /* Reduced padding */
    margin-top: 0.5rem;
}

.close-modal {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    font-size: 1.5rem; /* Smaller close button */
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.modal h2 {
    font-size: 1.5rem; /* Smaller title */
    margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .modal-content {
        width: 85%;
        margin: 20px auto;
        padding: 1rem;
    }
}

/* ...existing code... */

/* Add to your existing CSS */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #333;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 10px auto;
    }
}

/* ...existing code... */
