/* new css for nav */
/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4a90e2;
    --accent-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-left i {
    font-size: 0.875rem;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
}

.top-bar-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* nav-logo image */

        /* ===================================
           LOGO & BRAND
           =================================== */
       
/* Navigation Brand */
.nav-brand{
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

/* Logo Container */
.logo-img{
    display: flex;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* Logo Image */
.logo-img img{
    height: 100px;      /* Perfect desktop size */
    width: auto;       /* Keeps proportions */
    display: block;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Optional hover effect */
.logo-img img:hover{
    transform: scale(1.03);
}

/* Tablet */
@media (max-width: 768px){
    .logo-img img{
        height: 42px;
    }
}

/* Mobile */
@media (max-width: 480px){
    .logo-img img{
        height: 36px;
    }
}

/* end of nav-image */








/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 20px 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon::after {
    content: '✓';
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.feature-item span {
    font-size: 0.95rem;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}


/*  Right Slideshow */

/* ================================================
   PROMOTIONAL SLIDESHOW STYLES
   ================================================ */

   .slideshow-container.promo-mode {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  
  /* Slide base */
  .promo-mode .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    pointer-events: none;
  }
  .promo-mode .slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Slide color themes */
  #promo-slide-0 { background: #1a1400; }
  #promo-slide-0 h3 { color: #FAC775; }
  #promo-slide-0 p  { color: #d6b87a; }
  
  #promo-slide-1 { background: #021629; }
  #promo-slide-1 h3 { color: #B5D4F4; }
  #promo-slide-1 p  { color: #7aaad8; }
  
  #promo-slide-2 { background: #021710; }
  #promo-slide-2 h3 { color: #5DCAA5; }
  #promo-slide-2 p  { color: #4aaa87; }
  
  #promo-slide-3 { background: #1a0800; }
  #promo-slide-3 h3 { color: #F0997B; }
  #promo-slide-3 p  { color: #c97c5c; }
  
  /* Headings */
  .promo-mode .slide h3 {
    font-size: 1.7rem;
    margin: 0.5rem 0 0.6rem;
  }
  .promo-mode .slide p {
    font-size: 0.95rem;
    max-width: 340px;
    line-height: 1.6;
    margin: 0 0 1rem;
  }
  
  /* Badge */
  .promo-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    background: #FAC775; color: #412402;
  }
  .promo-badge--blue  { background: #B5D4F4; color: #042C53; }
  .promo-badge--teal  { background: #5DCAA5; color: #04342C; }
  .promo-badge--coral { background: #F0997B; color: #4A1B0C; }
  
  /* Pricing */
  .promo-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    justify-content: center;
    margin: 0.25rem 0 0.5rem;
  }
  .old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #666;
  }
  .new-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #FAC775;
  }
  .new-price small { font-size: 0.9rem; font-weight: 400; opacity: 0.8; }
  
  .new-price--blue  { color: #85B7EB; }
  .new-price--teal  { color: #5DCAA5; }
  .new-price--coral { color: #F0997B; }
  
  /* Countdown */
  .promo-countdown {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 1.25rem;
  }
  .promo-countdown .timer { font-weight: 600; color: rgba(255,255,255,0.8); }
  
  /* CTA button */
  .promo-cta {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    background: #FAC775; color: #412402;
  }
  .promo-cta--blue  { background: #378ADD; color: #fff; }
  .promo-cta--teal  { background: #1D9E75; color: #fff; }
  .promo-cta--coral { background: #D85A30; color: #fff; }
  .promo-cta:hover  { opacity: 0.88; transform: scale(1.04); }
  
  /* Dots */
  .promo-mode .slide-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }
  .promo-mode .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  .promo-mode .dot.active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    /* .slideshow-container.promo-mode { 
        height: 420px;
     }
    .promo-mode .slide h3 { 
        font-size: 1.3rem; 
    }
    .new-price { 
        font-size: 1.9rem;
     }; */

     .slideshow-container{
        display: none;
     }
  }


  
/*  end of Right Slideshow */


/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #2c5aa0;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    font-weight: 600;
    color: #2c5aa0;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .client-photo {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .client-photo .photo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .testimonial h2, .faq h2 {
        font-size: 2rem;
    }
    
    .testimonial-text {
        padding: 2rem;
    }
    
    .testimonial-text blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-details {
        font-size: 1rem;
    }
    
    .client-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Animation Effects */
.testimonial-content, .faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-content {
    animation-delay: 0.2s;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Footer Container */
        .footer {
            background: linear-gradient(135deg, #0a1428 0%, #1a2847 100%);
            color: #e0e7ff;
            padding: 4rem 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #4a7fff, transparent);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Main Footer Content */
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr) 1fr;
            gap: 2.5rem;
            padding: 3rem 0;
            margin-bottom: 2rem;
            align-items: start;
        }

        .footer-section {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #64b5f6;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #4a7fff, #64b5f6);
            border-radius: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.7rem;
        }

        .footer-section a {
            color: #b0bec5;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .footer-section a::before {
            content: '';
            position: absolute;
            left: -8px;
            width: 0;
            height: 1px;
            background: #4a7fff;
            transition: width 0.3s ease;
        }

        .footer-section a:hover {
            color: #64b5f6;
            padding-left: 8px;
        }

        .footer-section a:hover::before {
            width: 5px;
        }

        /* Newsletter Section */
        .newsletter {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .newsletter h4 {
            margin-bottom: 0.5rem;
        }

        .newsletter p {
            color: #b0bec5;
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            max-width: 100%;
        }

        .newsletter-form input {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(100, 181, 246, 0.3);
            padding: 0.65rem 0.9rem;
            color: white;
            outline: none;
            font-size: 0.85rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .newsletter-form input::placeholder {
            color: #78909c;
        }

        .newsletter-form input:focus {
            border-color: #4a7fff;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 15px rgba(74, 127, 255, 0.15);
        }

        .newsletter-form button {
            background: linear-gradient(135deg, #4a7fff 0%, #2d5fd9 100%);
            color: white;
            border: none;
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(74, 127, 255, 0.3);
        }

        .newsletter-form button:active {
            transform: translateY(0);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(100, 181, 246, 0.1);
            border: 1px solid rgba(100, 181, 246, 0.3);
            border-radius: 50%;
            color: #64b5f6;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #4a7fff 0%, #2d5fd9 100%);
            border-color: #4a7fff;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(74, 127, 255, 0.2);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(100, 181, 246, 0.2);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-nav a {
            color: #b0bec5;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #64b5f6;
        }

        .footer-bottom-center {
            text-align: center;
            font-size: 0.85rem;
            color: #90a4ae;
            flex: 1;
        }

        .footer-bottom-center strong {
            color: #64b5f6;
            font-weight: 700;
        }

        .footer-legal {
            display: flex;
            gap: 1.2rem;
            font-size: 0.85rem;
        }

        .footer-legal a {
            color: #64b5f6;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #42a5f5;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr) 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-nav {
                justify-content: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-nav {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                padding: 2rem 0;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.8rem;
            }
        }

/* Additional Animation Effects */
.feature-card, .pricing-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



