body{
  margin: 0;
  padding: 0;
}

header{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:linear-gradient(90deg,#4a148c,#7b1fa2);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.nav-links{
  display:flex;
  gap:25px;
  align-items: center;
  list-style:none;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight: 600;
}

.nav-item {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown i {
  font-size: 12px;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 999;
}

.submenu a {
  display: block;
  padding: 10px 15px;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}

.submenu a:hover {
  background: #e0dce4;
  color: purple;
}

.dropdown:hover .submenu {
  display: block;
}

.hero{
  height:100vh;
  width: 100%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
  
}

.hero-slide{
  position:absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-fit: center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.hero-slide.active{
  opacity:1;
}

.hero-overlay{
  position:absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  z-index: 1;
}

.hero-content{
  position:relative;
  z-index:2;
}

section{
  padding:100px 0;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}


.cards {
  display: flex;
  gap: 20px;
}

.card {
  width: 200;
  background: #fff;
  padding: 20px;
  flex: 1;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* ACTIONS */
.card-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* COLLAPSIBLE CONTENT */
.card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.card.open .card-content {
  max-height: 150px;
  margin-top: 10px;
}

/* BUTTON */
.toggle-btn {
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  background: #eee;
} 

/* CARD GRID */
.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
  padding: 40px 20px;
}

/* CARD SIZE CONTROL */
.card {
  max-width: 370px;
  width: 100%;
  margin: 0 auto; 
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}


/* CONTACT */

.contact-container {
  /*display: flex;
  gap: 40px; */
  width: 600px;
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  border: 3px solid purple;
  border-radius: 10px;
}

.contact-form {
  flex: 1;
}

.btn{
  padding: 10px 20px;
  background: #5e0b8b;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: purple;
}
/* Contact info */
.contact-info{
  margin-top: 20px;
  border-top: 2px solid purple;
  padding-top: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
}

.error {
  border-color: red !important;
}

.success {
  border-color: green !important;
}

#formStatus {
  margin-top: 10px;
  font-size: 14px;
}

input.error, textarea.error {
  border: 1px solid red;
}

input.success, textarea.success {
  border: 1px solid green;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* FAQ */

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/*.faq-item.active .faq-answer {
  /* height controlled via JS */


.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 10px 0;
  cursor: pointer;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}

.logo img {
  display: block;
  height: 60px;
  width: auto;
  border-radius: 2px;
  
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

/** Footer  **/

footer{
  background:linear-gradient(90deg,#7b1fa2,#4a148c,#7b1fa2);  
  color:#fff;
  padding:40px 30px;
  /** position:relative;
  text-align:center; **/
}

.footer-container {
  display: flex;
  align-items: flex-start;   /* Makes all columns start from the same top line */
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.footer-logo,
.footer-subscribe,
.footer-links,
.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/** .footer-logo{
  text-align: left;
  margin-bottom: 15px;
  
} **/

.footer-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 2px;
}

.footer-logo p {
  margin: 0;
  font-size: 14px;
}

.footer-subscribe input {
  padding: 10px;
  margin-bottom: 10px;
  width: 220px;
  border: none;
  border-radius: 5px;
}

.footer-links {
  gap: 10px;
  ;

   /** display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: 30px;
  top: 40px
   justify-content: center;
   margin: 15px 0;
  flex-wrap: wrap; **/
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #c084fc;
  text-decoration: underline;
}

.social-links {
  gap: 12px;
 
  

  /**   display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: 30px;
  top: 250px;
  justify-content: center;
  margin: 20px 0;    **/
}

.social-links a {
  color: #9c8a8a;
  font-size: 22px;
  text-decoration: none;
  
  /**margin: 0 10px;
  transition: 0.3s;   **/
  
}

.social-links a:hover {
  color: #270335;
  /** transform: scale(1.2);   **/
}


#product-card {

  text-align: center;
}

#contactpage {
  text-align: center;
}

.btnhome {
  display: inline-block;
  padding: 12px 24px;
  background-color: #5e0b8b;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.btnhome:hover {
  background-color: purple;
}