body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #2943b1 0%, #782980 100%);
    color: #fff;
}
header {
    background: #fff;
    color: #32327e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5%;
}
.logo img {
    height: 65px;
}
nav a {
    color: #782980;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
}
nav a.active, nav a:hover {
    color: #2943b1;
}
.main {
    padding: 45px 5%;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    margin: 40px auto;
    max-width: 1100px;
}
h1, h2 {
    color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.hero-slider {
  display: flex;
  transition: transform 1s ease-in-out;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.hero-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.hero-content .btn {
  background-color: #007bff;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}


.card {
    background: rgba(34,27,59,0.75);
    border-radius: 12px;
    margin-bottom:20px;
    padding: 24px;
    transition: box-shadow 0.3s;
}
.card:hover {
    box-shadow: 0 2px 24px #78298090;
}
form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: none;
}
form button {
    background: #2943b1;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
form button:hover {
    background: #782980;
}
@media (max-width: 750px) {
    .main { padding: 16px; }
    header { flex-direction: column; }
}

.product-category {
    margin-top: 40px;
}
.product-category h2 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.product-category .sub-title {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-left: 10px;
}
.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.product-card {
    background: linear-gradient(135deg, #2943b1cc 0%, #782980cc 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px #78298044;
    padding: 32px 24px;
    transition: box-shadow 0.3s, transform 0.18s;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 8px 32px #78298088;
    transform: translateY(-6px) scale(1.03);
}
.product-card h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.product-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.product-card li {
    margin-bottom: 8px;
    font-size: 1.01rem;
    line-height: 1.67;
}
.product-card strong {
    color: #ffd700;
    font-weight: 600;
}

@media (max-width: 600px) {
    .product-cards {
        grid-template-columns: 1fr;
    }
    .product-card {
        padding: 20px 12px;
    }
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: linear-gradient(135deg, #2943b1cc 0%, #782980cc 100%);
  border-radius: 12px;
  box-shadow: 0 4px 20px #78298044;
  padding: 24px 16px;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .product-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .product-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-card {
    padding: 12px 8px;
    font-size: 1rem;
  }
}

/* Optional: box-sizing and body padding */
*, *:before, *:after { box-sizing: border-box; }
body { margin: 0; padding: 0; }
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #782980;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    padding: 0 15px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 2px 14px #78298030;
    z-index: 1;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    color: #2943b1;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 1rem;
    background: linear-gradient(90deg, #f3eaff 0%, #fff 100%);
}

.dropdown-content a:hover {
    background: #78298022;
    color: #782980;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive adjustment for dropdown on small screens */
@media (max-width: 750px) {
    .dropdown-content {
        position: static;
        min-width: 100%;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.contact-details h2 {
    margin-top: 18px;
    margin-bottom: 4px;
    color: #ffd700;
    font-size: 1.1rem;
}
.contact-details p, .contact-details a {
    font-size: 1rem;
    color: #fff;
}
.contact-details a {
    text-decoration: underline;
}
.contact-details form {
    margin-top: 14px;
    background: #fff1;
    border-radius: 8px;
    padding: 14px 8px;
}
.contact-details input, .contact-details textarea {
    background: #fff;
    color: #2943b1;
    border: none;
    margin-bottom: 8px;
    border-radius: 5px;
}
.contact-details button {
    background: #2943b1;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 600;
}

/* Footer Styles */
footer {
    background: linear-gradient(90deg, #2943b1 0%, #782980 100%);
    color: #fff;
    padding: 24px 5% 0 5%;
    margin-top: 40px;
    border-top: 3px solid #ffd700;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 18px;
    font-size: 0.95rem;
}
.footer-logo img {
    vertical-align: middle;
}
.footer-info {
    flex: 1;
    min-width: 220px;
    margin: 6px 16px;
}
.footer-links {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 650px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }
}
/* ======= Reviews Section ======= */
.reviews {
    background: linear-gradient(135deg, #2943b1 0%, #782980 100%);
    color: #fff;
    padding: 50px 5%;
}
.reviews h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}
.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}
.review-card:hover {
    transform: translateY(-5px);
}
.review-card p {
    font-size: 1rem;
    margin-bottom: 10px;
    font-style: italic;
}
.review-card strong {
    font-size: 0.95rem;
    color: #ffd700;
}

/* Vision-Mission Section */
.vision-mission {
    background: #f9f9ff;
    padding: 50px 5%;
}
.vm-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.vm-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 25px;
    transition: all 0.3s ease;
}
.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.vm-card h2 {
    font-size: 1.4rem;
    color: #2943b1;
    margin-bottom: 12px;
}
.vm-card p, 
.vm-card li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}
.vm-card ul {
    padding-left: 18px;
    margin: 0;
}
.vm-card li strong {
    color: #782980;
}
@media (max-width: 600px) {
    .vision-mission {
        padding: 30px 4%;
    }
    .vm-card h2 {
        font-size: 1.2rem;
    }
}
