
@import url("https://fonts.googleapis.com/css?family=Raleway");
@import "~@fortawesome/fontawesome-free/css/all.min.css";


:root {
  --glow-color: hsl(186 100% 69%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html {
  scroll-behavior: smooth;
}
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9f9;
            color: #333;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(135deg, #ff7f50, #ff9966);
            color: white;
            text-align: center;
            padding: 60px 20px;
            position: relative;
            animation: fadeInDown 1s ease-out;
        }

        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        .cta-button {
            background-color: white;
            color: #ff7f50;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: #ff7f50;
            color: white;
            transform: translateY(-3px);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section {
            margin: 60px 0;
            animation: fadeInUp 1s ease-out;
        }

        h2 {
            text-align: center;
            font-size: 2em;
            margin-bottom: 20px;
            color: #444;
            position: relative;
        }

        h2::after {
            content: "";
            width: 60px;
            height: 4px;
            background: #ff7f50;
            display: block;
            margin: 10px auto;
            border-radius: 2px;
        }

        .landing {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }

        .text-content {
            flex: 1;
            animation: slideInLeft 1s ease-out;
        }

        .video-container {
            flex: 1;
            animation: slideInRight 1s ease-out;
        }

        iframe {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .benefits,
        .testimonials,
        .faq {
          /*  display: grid; */
           /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
            gap: 25px;
            display: flex;
        }

        .card {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }


        .testimonials {
            margin: 30px 0 0 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .card {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .insights-heading {
            margin: 3em 0;
        }

        /* .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            background-color: #ff7f50;
        } */

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }

        th,
        td {
            padding: 14px;
            border-bottom: 1px solid #eee;
            text-align: left;
        }

        th {
            background: #ff7f50;
            color: white;
        }

        tr:hover {
            background: #fdf3ef;
        }

        .plans {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }

        .plan {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1 1 300px;
            transition: transform 0.3s ease;
        }

        .plan:hover {
            transform: translateY(-5px);
        }

        .medical {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }

        .xcard {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            flex: 1 1 300px;
            transition: transform 0.3s ease;
        }

        .xcard:hover {
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            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);
            }
        }










        .faq-section {
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
        }

        .faq-section h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: #222;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
            padding: 15px 0;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            background: none;
            border: none;
            outline: none;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question span {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            display: none;
            padding-top: 10px;
            color: #150e0e;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }

        .testimonials-section {
            width: 100%;
            margin: auto;
            padding: 40px 20px;
            background: #f9f9f9;
        }

        .testimonials-section h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: #222;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .review-card {
            background: white;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease;
        }

        .review-card:hover {
            transform: translateY(-3px);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .review-avatar {
            border-radius: 50%;
            width: 50px;
            height: 50px;
        }

        .review-header h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: bold;
        }

        .stars {
            color: #fbbc05;
            font-size: 0.9rem;
        }

        .review-header {
            display: flex;
            flex-direction: column; 
            align-items: flex-start; 
            gap: 0.25rem; 
        }

        .review-text {
            width: 60%;
            margin: 0 auto;
            font-size: 0.95rem;
            color: black;
        }

        section.section1 {
            display: flex;
            justify-content: space-between;
        }
        .card {
            border: none !important;
        }

        section.section1 img {
            width: 100%;
            height: auto;
        }

        .banti {
            display: flex;
        }

        .banti img {
            width: 47%;
            height: 381px;
            margin-top: 42px;
            justify-content: space-between;
        }

        section.Member.Testimonials.\&.Insights1111 {
            margin-top: 2em;
        }

        /* Popup Overlay */
#popup {
   position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none; /* hidden by default */
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    z-index: 9999;
    padding: 10px;  /* Space for small screens */
}

/* 
=========================================
            Contact Form
=========================================
*/

.footer-section {
  display: flex;
  justify-content: center;  
  align-items: center;      
  min-height: 100vh;        
  background-color: #f8f9fa; 
}

.contat-form {
    margin: 2em 0;
    cursor: context-menu;
}

.contat-form .row {
    display: flex;              
    align-items: center;        
    min-height: 70vh;          
}

.popup-form {
    text-align: center;
}

.form-group {
    padding: 0 0 10px 0;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 2px solid #d8d8d8;
    padding: 13px 15px;
    margin: 10px 0;
    outline: none;
    width: 80%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.09);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid #ff7f50;
}

.submit-btn {
    padding: 1em 4em;
    width: 80%;
    background-color: #ff7f50;
    color: white;
    border: 2px solid #ff7f50;
    border-radius: .5em;
    font-size: 18px;
    transition: .5s ease-in-out;
    
}

.submit-btn:hover {
    background-color: white;
    color: #ff7f50;
    transition: .5s ease-in-out;
}

.card {
    cursor: cursor !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.contact-img {
    width: 80%;
    height: auto;
    overflow: hidden !important;
}

.contact-img img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}




/* Popup Content */
/* .popup-content {
    background: url('https://impacthealthadviser.com/img/Screenshot_8.png') no-repeat center center;
    background-size: cover;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
} */

/* Close Button */
/* .close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}


.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.popup-form input, .popup-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}
.submit-btn {
    background: #ff9966; 
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.submit-btn:hover {
    background: #005bb5;
}

 */

header button {
    padding: 16px 48px 19px 44px;
    border-radius: 25px;
    background-color: white;
    border: 2px solid white;
    color: #ff9966;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    margin-top: 30px;
}
header button:hover {
    background-color:#ff9966; 
    color: white;
}
.bottom-right-btn {
    position: fixed;
    bottom: 20px; /* distance from bottom */
    right: 20px;  /* distance from right */
    z-index: 10000; /* keep above other elements */
}


/* Button Effect */

.open-popup-btn.glowing-btn.bottom-right-btn {
  padding: 15px 25px;
  border-radius: 100px !important;
}


.glowing-btn {
  position: fixed;
  color: white;
  cursor: pointer;
  padding: 0.35em 1em;
  border: 0.15em solid #ff9966;;
  border-radius: 0.45em;
  background: #ff9966;
  perspective: 2em;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 900;
  /* letter-spacing: 1em; */

  -webkit-box-shadow: inset 0px 0px 0.5em 0px #ff9966,
    0px 0px 0.5em 0px #ff9966;
  -moz-box-shadow: inset 0px 0px 0.5em 0px #ff9966,
    0px 0px 0.5em 0px #ff9966;
  box-shadow: inset 0px 0px 0.5em 0px #ff9966,
    0px 0px 0.5em 0px #ff9966;
  animation: border-flicker 2s linear infinite;
}

.glowing-txt {
  float: left;
  margin-right: -0.8em;
  -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em #ff9966;
  -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
    0 0 0.45em #ff9966;
  text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em #ff9966;
  animation: text-flicker 3s linear infinite;
}

.faulty-letter {
  opacity: 0.5;
  animation: faulty-flicker 2s linear infinite;
}

/* .glowing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.7;
  filter: blur(1em);
  transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
  background: var(--glow-color);
  pointer-events: none;
} */

/* .glowing-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: var(--glow-color);
  box-shadow: 0 0 2em 0.2em var(--glow-color);
  transition: opacity 100ms linear;
} */

.glowing-btn:hover {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: none;
  animation: none;
}

.glowing-btn:hover .glowing-txt {
  animation: none;
}

.glowing-btn:hover .faulty-letter {
  animation: none;
  text-shadow: none;
  opacity: 1;
}

.glowing-btn:hover:before {
  filter: blur(1.5em);
  opacity: 1;
}

.glowing-btn:hover:after {
  opacity: 1;
}

@keyframes faulty-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 0.1;
  }
  4% {
    opacity: 0.5;
  }
  19% {
    opacity: 0.5;
  }
  21% {
    opacity: 0.1;
  }
  23% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  83% {
    opacity: 0.4;
  }

  87% {
    opacity: 1;
  }
}

@keyframes text-flicker {
  0% {
    opacity: 0.1;
  }

  2% {
    opacity: 1;
  }

  8% {
    opacity: 0.1;
  }

  9% {
    opacity: 1;
  }

  12% {
    opacity: 0.1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }

  70% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.2;
  }

  77% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.9;
  }
}

@keyframes border-flicker {
  0% {
    opacity: 0.1;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: 0.1;
  }

  8% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .glowing-btn{
    font-size: 1em;
  }
}



.social-footer {
  background-color: #042E30;
  color: #fff;
  padding: 5em 0;
}

.social-footer h4 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin: 0 12px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #00BFA6; /* Hover color (optional) */
  transform: scale(1.2);
}

