
/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #333;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fd9644;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.navbar ul li {
    margin: 0 1rem;
}

.navbar ul li a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #fd9644;
}

.navbar .btn {
    background-color: #fd9644;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.navbar .btn:hover {
    background-color: #e86c10;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('/static/images/Email-Marketing-login.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* optional overlay for readability */
    /*background: rgba(15, 32, 39, 0.7);  /*Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    animation: slideInLeft 1.5s ease-out;
}


.hero-content h1 span {
    color: #fd9644;
    background: linear-gradient(135deg, #fcb045, #fd9644);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



@keyframes rotateText {
    0% {
        transform: rotate(0deg);
        color: #fd9644; /* fallback for older browsers */
        background: linear-gradient(135deg, #f8dcb4, #fd9644);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;  }
    25% {
        background: linear-gradient(135deg, #ffd3a1, #fda54d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 150%; 
    }
    50% {
        transform: rotate(180deg);
        background: linear-gradient(135deg, #fdeb71, #fd9644);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 180%;
    }
    75% {
        background: linear-gradient(135deg, #a8a19b, #b35508);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 200%;
    }
    100% {
        transform: rotate(360deg);
        background: linear-gradient(135deg, #10ca7d, #fd9644);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}



.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInRight 1.5s ease-out;
}

.hero-content .btn {
    background-color: #fd9644;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    animation: fadeInUp 2s ease-in-out;
}

.hero-content .btn:hover {
    background-color: #e86c10;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
}

/* Features Section */
/* .features {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f0f4f8;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, #fd9644, transparent 70%);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    position: relative;
}

.features .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff, #f9fafc);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at center, #fd9644, transparent 70%);
    opacity: 0.2;
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, #fd9644, #fcb045);
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-bounce 2s infinite;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(100%);
}

.feature-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s;
}

.feature-item:hover h3 {
    color: #fd9644;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
} */


.features {
    padding: 6rem 2rem;
    background-color: #fff;
    text-align: center;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.features h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.features .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(100%);
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

.learn-more {
    color: #fd9644;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.learn-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.learn-more:hover {
    color: #e86c10;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Responsive */
@media (min-width: 768px) {
    .features h2 {
        font-size: 3rem;
    }
    .features .subtitle {
        font-size: 1.5rem;
    }
}


/* CTA Section */
.cta {
    background: linear-gradient(135deg, #fcb045, #fd9644);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn {
    background-color: #fff;
    color: #fd9644;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta .btn:hover {
    background-color: #e86c10;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .footer-section {
    flex: 1 1 200px;
    margin: 1rem;
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer p,
.footer a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #fff;
}

.socials {
    display: flex;
    margin-top: 1rem;
}

.socials a {
    color: #ccc;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #fd9644;
}

/* Responsive */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .navbar ul li {
        margin: 0 1.5rem;
    }
}

        /* Testimonial Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    position: relative;
}

.testimonials h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #fd9644;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.testimonials .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.testimonial-card {
    background-color: #f9fafc;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    flex: 0 0 300px;
    padding: 2rem;
    position: relative;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 100px;
}

.testimonial-content::before {
    content: '“';
    font-size: 3rem;
    color: #fd9644;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-content::after {
    content: '”';
    font-size: 3rem;
    color: #fd9644;
    position: absolute;
    bottom: -20px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

/* .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #fd9644;
} */

.testimonial-author img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px #f8f7f6, 0 0 30px #f57a15;
    animation: glow-border 1.5s infinite alternate;
}

@keyframes glow-border {
    0% {
        box-shadow: 0 0 0px #eceae9, 0 0 20px #f57a15;
    }
    100% {
        box-shadow: 0 0 10px #eceae9, 0 0 30px #f57a15;
    }
}


.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #333;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #777;
}

@media (min-width: 768px) {
    .testimonial-slider {
        overflow: visible;
        flex-wrap: wrap;
        justify-content: center;
    }
    .testimonial-card {
        flex: 0 0 calc(33.333% - 2rem);
        margin-bottom: 2rem;
    }
}

/* Features Section Enhancement */
.features {
    padding: 6rem 2rem;
    background-color: #fff;
    text-align: center;
}

.features h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.features h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #fd9644;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.features .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-item {
    background-color: #f9fafc;
    border-radius: 16px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(100%);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.pricing h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #fd9644;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.pricing .subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.pricing-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 2rem;
    width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid #fd9644;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card .price .period {
    font-size: 1rem;
    color: #777;
}

.pricing-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    text-align: left;
}

.pricing-card ul li i {
    color: #fd9644;
    margin-right: 0.5rem;
}

.pricing-card ul li i.fa-times {
    color: #ccc;
}

.pricing-card .btn {
    background-color: #fd9644;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #e86c10;
}

.pricing-card .most-popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fd9644;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .feature-grid,
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
}


/* FAQ: pure white bg, black text, centered */
#faq { background: #ffffff !important; }
#faq .card,
#faq .card-header,
#faq .card-body {
  background-color: #ffffff !important;
  border-color: #eeeeee !important;
  box-shadow: none;
}

#faq .card-header { text-align: center; }

#faq .card-header .btn-link {
  color: #000000 !important;
  font-weight: 600;
  text-decoration: none !important;
  padding: 0.75rem 1rem;
}

#faq .card-header .btn-link:hover,
#faq .card-header .btn-link:focus {
  color: #000000 !important;
  text-decoration: none;
}

#faq .card-body {
  color: #000000 !important;
  text-align: center;
  font-weight: 400;
}



/* FAQ focus/active brand color */
/* #faq .card {
  border: 1px solid #eeeeee !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

#faq .card:focus-within {
  border-color: #fd9644 !important;
  box-shadow: 0 0 0 .25rem rgba(253,150,68,.20) !important;
} */

#faq .btn:focus,
#faq .btn-link:focus,
#faq .btn-link:focus-visible {
  outline: none !important;
  border-color: #fd9644 !important;
  box-shadow: 0 0 0 .25rem rgba(253,150,68,.35) !important; /* replaces blue */
}

#faq .card-header .btn-link { border-radius: 8px; }

#faq .collapse.show { border-top: 1px solid #fd9644; }


/* Ratings (before Pricing) */
.ratings {
  background: #ffffff;
  padding: 4rem 1rem;
}
.ratings-intro .ratings-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 150, 68, .12);
  color: #fd9644;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.ratings h3 { margin: 0; }

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 992px) {
  .ratings-grid { grid-template-columns: 1fr; }
}

.rating-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.score {
  --bg: #e7eaf0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    conic-gradient(var(--ring, #fd9644) calc(var(--val, 0) * 1%), var(--bg) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent 60%, #000 61%);
  mask: radial-gradient(farthest-side, transparent 60%, #000 61%);
  display: grid;
  place-items: center;
  transition: background 0.8s ease;
}
.score span {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
}

.rating-item .label h5 {
  margin: 0 0 4px 0;
  font-weight: 700;
  color: #000;
}
.rating-item .label small {
  color: #6b7280;
}
