:root {
    --primary-color: #8294C4;
    --secondary-color: #C7D9DD
    --accent-color: #F3F2EC;
    --background-color: #ffffff;
    --text-color: #000000;
    --font-family: 'Roboto', sans-serif;

}

/* Navigation Bar Start */

.header {
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    border-radius: 8px;
    box-shadow: #000000 0px 3px 6px, #000000 0px 3px 6px;

}

.navbar {
    background-color: var(--primary-color);
    display: flex;
    padding: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-family);
    border-radius: 8px;
    gap: 0rem;
}

.search-bar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar input {
    width: 50%;
    max-width: 300px;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 10px 10px 0;
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.search-btn:hover {
    background-color: var(--accent-color);
}

.search-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 4px;
}
.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s ease;
    justify-items: auto;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease-in-out, color 0.4s ease-in-out;
}

.navbar a:hover {
    transform: scale(1.05);
    color: var(--text-color);
   transition: transform 0.3s ease;
}

.logo {
    margin-right: 2rem;
}

.logo :hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-left: 3rem;
}

.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* Navigation Bar End */

/* <!-- Hero section --> */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(heroimage.jpg) no-repeat center center/cover;
    height: 100vh; 
    text-align: center;
    overflow: hidden;
    color: white;
    border-color: black;
}

.hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(200, 216, 220, 0.5),
        rgba(52, 43, 48, 0.5)
    );
}

.hero-content {
    position: ;
    z-index: 2;
    max-width: 100%;
}

.hero-content h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    padding-top: 5.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transform: scale(1);
    transition: color 0.3s ease;
    transition: transform 0.3s ease-in-out, color 0.4s ease-in-out;
}

.hero-content h1:hover {
    transform: scale(1.05);
  color: #8e8a8a; /* hover highlight */
}

.hero-content span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding : 0;
    margin: 1.5rem 0;
    border-color: black;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hero-content p:hover {
  color: #000000; /* hover highlight */
}

.hero-content .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Feature Cards Start*/

.features {
    Padding: 1rem 1rem;
    background: var(--background-color);
    text-align: center;
}

.feature h1 {
    padding-top: 1rem;
    font-size: 3rem;
    margin-bottom: 2rem;
    color:var(--text-color);
    font-family: var(--font-family);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.feature-item img {
    max-width: 200px;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-color);
}

.feature-item p {
    color: white;
    border-color: black;
    font-size: 1rem;

}

/* Feature Cards End */

/* Pricing Section start */

.pricing {
    padding: 2rem 2rem;
    background: var(--primary-color) ;
    text-align: center;
    border-radius: 10px;
    margin: 20px;
}

.pricing h2 {
    font-family: val(--font-family);
    color: val(--text-color);
    font-size: 2rem;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

}

.pricing-option {
    background-color: var(--background-color);
    border-color: black;
    border-radius: 12px;
    width: 250px;
    font-size: 1.05rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.pricing-option:hover {
    transform: scale(1.05) ;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.pricing-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.rem;
    color: white;
    background: #000000;
}

.pricing-option h3:hover {
    color: rgb(200, 124, 124)
}

.pricing-option p {
    text-align: center;
    color: val(--text-color);
    margin-bottom: 1rem;
}

.pricing-option ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;

}

.pricing-option ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight : bold;
    margin-bottom: 1rem;
    color: #e71313;
    border-color: black;

}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: val(--secondary-color);
    color: #000dff;
    text-decoration: none;
    transition: background 0.3s ease;

}

.btn:hover {
    background: #8294C4;
}

/* Pricing Section end */

/* Contact us Start */

.contact {
    background-color: #8294C4;
    border-style: ridge;
    padding: 1rem 1rem 1rem 1rem ;
    margin: 1rem 15rem;
    text-align: center;
    border-radius: 50px;
    box-shadow: 8px 8px 8px 8px rgb(133, 132, 132)}



/* Make contact section responsive */
@media (max-width: 768px) {
  .contact {
    margin: 1rem 1rem;
    padding: 1rem;
    border-radius: 20px;
  }
  .contact-form {
    max-width: 100%;
    padding: 0;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .contact {
    margin: 0.5rem 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
  }
  .contact-form {
    max-width: 100%;
    padding: 0;
  }
}





.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-width: 10px;
  color: white;          
}

.contact p {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  border: 10px;
  border-color: black;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077ff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 119, 255, 0.3);
}

.contact-form textarea {
  resize: none;
  min-height: 60px;
}

.contact-form .btn {
  align-self: center;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: #005ad6;
}


/* contact-form end */

/* Footer start */

.footer {
  background: #8294C4;
  color: #ffffff;
  padding: 2rem 1rem;
  border-radius: 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 80px;
  margin-bottom: 1rem;
}

.footer-left p {
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-links h3,
.footer-right h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  font-family: var(--font-family) ;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #0077ff;
}

.footer-right p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #ffffff;
}

.social-links a img {
    padding-top: 1rem;
  width: 24px;
  margin-right: 0.5rem;
  /* filter: invert(100%); */
  transition: transform 0.3s;
}

.social-links a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #000000;
  padding-bottom: 0;
   
}

