* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Maroon Colors */
:root {
    --maroon: #070707;
    --light-maroon: #a00000;
    --white: #ffffff;
}


/* Navbar */


.navbar {
    background: hsl(0, 0%, 100%);
    padding: 7px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.08);
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--maroon);
}

/* Button */
.navdemo-btn {
    background: #6D2E3D;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}
a {
    text-decoration: none;
}


/*navbar end*/

/*hero section*/

.jewel-section{
background:#6D2E3D;
padding:80px 10%;
color:white;
}

.jewel-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
padding:80px 5%;
}

/* IMAGE */

.jewel-image img{
width:2000px;
max-width: 100%;
transition:0.4s;
cursor:pointer;
margin-left: 120px;

}

/* HOVER EFFECT */

.jewel-image img:hover{
transform:translateY(-10px) scale(1.05);
filter:brightness(1.1);
}

/* TEXT */

.jewel-content{
max-width:750px;
}

.tag{
background:white;
color:#1b1042;
padding:6px 14px;
border-radius:20px;
font-size:13px;
display:inline-block;
margin-bottom:20px;
}

.jewel-content h1{
font-size:40px;
margin-bottom:20px;
}

.jewel-content p{
font-size:16px;
margin-bottom:25px;
line-height:1.6;
}

/* BUTTON */

.demo-btn{
background:#ffffff;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
color:#6D2E3D;
font-weight:600;
transition:0.3s;
}


/*Form button end */

/* Demo Form Popup start */
#formContainer{
display:none;
position:absolute;
width:350px;
z-index:9999;

}
/* Demo Form Popup end*/
/*submit button */
.btn-primary{
background-color:#6D2E3D !important;
border-color:#6D2E3D !important;
color:#ffffff !important;
}

.btn-primary:hover{
background-color:#5a2430 !important;
border-color:#5a2430 !important;
color:#ffffff !important;
}
/*cancel button */
.btn-cancel-custom{
background-color:#ffffff;
color:#6D2E3D;
border:2px solid #6D2E3D;
border-radius:8px;
font-weight:600;
padding:6px 16px;
}

.btn-cancel-custom:hover{
background-color:#f5f5f5;
color:#6D2E3D;
}
/*Form button end*/

/*Card 1 section start*/
.dashboard-section{
padding:30px 10px;
text-align:center;
}

.main-heading{
font-size:34px;
font-weight:700;
margin-bottom:50px;
}

.main-heading span{
color:#6D2E3D;
}

/* Card */

.dashboard-card{
display:flex;
align-items:center;
gap:40px;
background:#fff;
padding:40px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
max-width: 1500px;
margin:auto;

}

/* Hover effect */

.dashboard-card:hover{
box-shadow:0 10px 35px rgba(0,0,0,0.25);
transform:translateY(-5px);
}

/* Image */

.dashboard-image img{
width:400px;
height:390px;
border-radius:10px;
}

/* Content */

.dashboard-content{
text-align:left;
}

.dashboard-content h3{
font-size:26px;
margin-bottom:10px;
}

.dashboard-content h4{
color:#6D2E3D;
margin-bottom:15px;
}

.dashboard-content p{
margin-bottom:20px;
color:#555;
line-height:1.6;
}

.dashboard-content ul{
list-style:none;
padding:0;
}

.dashboard-content ul li{
margin-bottom:10px;
position:relative;
padding-left:20px;
}

.dashboard-content ul li:before{
content:"✔";
position:absolute;
left:0;
color:#6D2E3D;
}
.dashboard-card:hover{
box-shadow:0 0 10px #6D2E3D;
}
/*Card 1 section start*/
/* 3card start */
.cards-section{

  padding-top:0;
  margin-top:40px;
background:#ffffff;
font-family:Arial, sans-serif;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:34px;
font-weight:700;
margin-bottom:20px;
color:#2c2c2c;
margin-top:0;
}

.section-subtitle{
text-align:center;
color:#777;
margin-bottom:50px;
}

/* CARD LAYOUT */

.cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:nowrap ;
}

/* CARD DESIGN */

.card{
background:#fff;
padding:35px;
min-height: 400px;
width:500px;
border-radius:10px;
border:1px solid #e5e5e5;
transition:all 0.3s ease;
position:relative;
flex:0 0 480px;
}


/* BADGE */

.badge{
position:absolute;
top:-12px;
left:20px;
background:#ff6b6b;
color:#fff;
padding:5px 12px;
font-size:12px;
border-radius:5px;
}

/* TITLE */

.card h3{
font-size:20px;
margin-bottom:10px;
padding-bottom:10px;
border-bottom:2px solid #e6c26a;
color:#333;
}

/* DESCRIPTION */

.card p{
font-size:14px;
color:#666;
margin-bottom:15px;
}

/* LIST */

.card ul{
list-style:none;
padding:0;
margin-bottom:20px;
}

.card ul li{
margin-bottom:8px;
font-size:14px;
color:#555;
}

/* CHECK ICON */

.card ul li:before{
content:"✔";
color:#6D2E3D;
left:0;
margin-left:8px;
}

/* LINK */

.card a{
text-decoration:none;
font-weight:600;
color:#555;
}

/* HOVER EFFECT */

.card:hover{
border:4px solid #800000;
transform:translateY(-6px);
}

.card:hover h3{
border-bottom:2px solid #800000;
}

/* 3card End */



/* Features Section */

.features-section{
  text-align:center;
  background:#fafafa;
  padding-top:60px;
  padding-bottom:0;
   margin-top:50px; 
}

.features-title{

font-size:32px;
font-weight:700;
margin-bottom:10px;
text-align:center;
 margin-top:50px;        
  margin-bottom:2px;
}
.key-heading{
font-size:16px;
font-weight:600;
margin-top:10px;
margin-bottom:10px;
color:#333;
}

.features-container{
display:flex;
justify-content:center;
 gap:20px;
flex-wrap:wrap;
 margin-top:0;
  
}

.feature-img{
  width:100%;
  max-width:1100px; 
  height:auto;
  display:block;
 margin: -40px auto -70px auto; 
}

/*features end*/

/* Testimonial start */

/* Testimonials Section */

.testimonials{
padding:10px 10%;
background:#f8f8f8;
text-align:center;
}

/* Heading */

.testimonials h2{
font-size:32px;
margin-bottom:19px;
color:#000000;
}
.test-subtitle{
text-align:center;
color:#777;
font-size:15px;
margin-top:8px;
margin-bottom:25px;
}

/* Cards container */

.testimonial-container{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
}

/* Card design */

.testimonial-card{
background:#fff;
width:300px;
margin: 10px;
padding:30px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
border-top:4px solid #7a1c2e;
text-align:center;
transition:0.3s;

}

/* Hover effect */

.testimonial-card:hover{
transform:translateY(-8px);
}

/* Quote icon */

.testimonial-card .quote{
font-size:35px;
color:#7a1c2e;
display:block;
margin-bottom:15px;
}

/* Text */

.testimonial-card p{
font-size:15px;
color:#555;
margin-bottom:20px;
line-height:1.6;
}

/* Name */

.testimonial-card h3{
font-size:18px;
margin-bottom:5px;
}

/* Client type */

.testimonial-card .client{
font-size:13px;
color:gray;
}

/* Testimonial end */



/*footer*/
.footer{
background:#6D2E3D;
color:white;
padding-top:80px;
font-family:sans-serif;
position:relative;
}


.footer-top{
text-align:center;
max-width:800px;
margin:auto;
padding-bottom:60px;
}

.footer-top h2{
font-size:30px;
margin-bottom:15px;
}

.footer-top p{
font-size:15px;
opacity:0.9;
}

.demo-btn{
margin-top:20px;
padding:12px 28px;
border:none;
background:white;
color:#6D2E3D;
border-radius:5px;
font-weight:bold;
cursor:pointer;
}

/* bottom layout */

.footer-content{
display:flex;
justify-content:flex-start;
align-items:flex-start;
max-width:1200px;
margin:auto;
padding:60px 20px;
gap:120px;
}

.footer-center{
text-align:center;
position: relative;
left: -80px;
}
.footer-right{
  margin-left: 50px;
}

/* logo side */

.footer-logo{
width:50%;
margin-bottom:15px;
}

.footer-left p{
max-width:350px;
font-size:14px;
}

.social-icons{
margin-top:25px;
display: flex;
gap: 10px;
justify-content: flex-start;
}

.social-icons i{
margin-right:8px;
font-size:12px;
cursor:pointer;
}

/* contact */

.footer-right h3{
margin-bottom:15px;
text-align: left;
}

.footer-right p{
margin-bottom:10px;
font-size:14px;


}
.footer-right a {
  color: white !important;
  text-decoration: none;
}


/* ================= RESPONSIVE DESIGN ================= */


/* ================= RESPONSIVE DESIGN ================= */


/* ===== SMALL LAPTOP (≤1200px) ===== */

@media (max-width:1200px){

  .jewel-container{
    gap:40px;
    padding:60px 5%;
  }

  .dashboard-card{
    gap:20px;
  }

  .footer-content{
    gap:60px;
  }

  .footer-center{
    left:0;
  }

  .footer-right{
    margin-left:0;
  }

}


/* ===== TABLET (≤1024px) ===== */

@media (max-width:1024px){

  .jewel-container{
    flex-direction:column;
    text-align:center;
    gap:40px;
  }

  .dashboard-card{
    flex-direction:column;
    text-align:center;
  }

  .dashboard-content{
    text-align:center;
  }

  .dashboard-image img{
    width:100%;
    height:auto;
  }

  .cards{
    flex-wrap:wrap;
    justify-content:center;
  }

  .card{
    flex:0 0 45%;
    width:45%;
  }

  .footer-content{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:40px;
  }

  .footer-left,
  .footer-center,
  .footer-right{
    width:100%;
    text-align:center;
  }

  .footer-right h3{
    text-align:center;
  }

}


/* ===== MOBILE (≤768px) ===== */

@media (max-width:768px){

  /* NAVBAR */

  .navbar{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .logo img{
    max-width:90px;
    height:auto;
  }

  /* HERO */

  .jewel-container{
    flex-direction:column;
    text-align:center;
    padding:40px 5%;
  }

  .jewel-content h1{
    font-size:26px;
  }

  .jewel-content p{
    font-size:14px;
  }

  /* IMAGE */

  .jewel-image{
    display:flex;
    justify-content:center;
    width:100%;
  }

  .jewel-image img{
    width:100%;
    max-width:280px;
    height:auto;
    margin:0 auto;
  }

  /* CARDS */

  .cards{
    flex-direction:column;
    align-items:center;
  }

  .card{
    width:100%;
    max-width:500px;
    flex:none;
  }

  /* FEATURES */

  .features-container{
    gap:30px;
  }

  /* DASHBOARD */

  .dashboard-content{
    text-align:center;
  }

  /* FOOTER */

  .footer-content{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:30px;
  }

  .footer-left,
  .footer-center,
  .footer-right{
    width:100%;
    text-align:center;
  }

  .footer-right h3{
    margin-top:20px;
  }

  /* CONTACT ALIGNMENT FIX */

  .contact-item{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:10px 0;
  }

  .contact-item p{
    margin:0;
    line-height:1.6;
  }

  .contact-item img{
    width:18px;
    height:18px;
  }

  /* SOCIAL ICON */

  .social-icons{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:10px;
  }

  .social-icons img{
    width:35px;
    height:35px;
  }

}


/* ===== EXTRA SMALL MOBILE (≤480px) ===== */

@media (max-width:480px){

  .jewel-content h1{
    font-size:22px;
  }

  .main-heading{
    font-size:24px;
  }

  .section-title{
    font-size:24px;
  }

  .testimonials h2{
    font-size:24px;
  }

  .footer-top h2{
    font-size:22px;
  }

  .footer-top p{
    font-size:13px;
  }

}