/* ---------------------------
   General Styles
---------------------------- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

h1, h2, h3 {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 50px 20px;
    text-align: center;
}

/* ---------------------------
   Header & Navigation
---------------------------- */
/* Header Navigation */
header {
    background: #c4ccf6;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #F25400;
}



nav {
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #F25400;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Responsive */
@media screen and (max-width:768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        border-radius: 5px;
    }

    .nav-list li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list.active {
        display: flex;
    }
}


/* ---------------------------
   Hero Section
---------------------------- */
.hero {
    background: #f4f4f4;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #F25400;
}

.hero p {
    font-size: 18px;
}

/* ---------------------------
   Products Section (Home Page)
   
---------------------------- */
.products-section {
  padding: 40px 20px;
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product-img {
  width: 100%;           /* Full width inside container */
  height: auto;          /* Keeps correct aspect ratio */
  max-height: 200px;     /* Optional: prevent super tall images */
  object-fit: contain;   /* Keeps image fully visible */
  border-radius: 8px;    /* Rounded corners */
  display: block;
  margin: 0 auto 15px;   /* Center with spacing */
  background:#c4ccf6;
}

.product h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.product p {
  font-size: 0.95rem;
  margin: 5px 0 15px;
}

.buy-btn {
  background: #f04d23; /* Brand orange */
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #d53d19;
}


/* ---------------------------
   Modal Styles (Buy Form)
---------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: #fff;
    margin: 100px auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.modal input, .modal textarea, .modal select {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.modal button[type="submit"] {
    width: 100%;
    background: #F25400;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal button[type="submit"]:hover {
    background: #d34400;
}

/* ---------------------------
   Services Page
---------------------------- */
.services h1 {
    margin-bottom: 30px;
    color: #F25400;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    font-size: 18px;
    margin: 15px 0;
    background: #fff;
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.services ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ---------------------------
   About Page
---------------------------- */
.about {
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ---------------------------
   Contact Page
---------------------------- */
.contact {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact form label {
    display: block;
    text-align: left;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact form button {
    background: #F25400;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

.contact form button:hover {
    background: #d34400;
}

/* ---------------------------
   Footer
---------------------------- */
footer {
    background: #c4ccf6;
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
}
.social-media {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
}

.social-media h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.social-icons a {
  background: #f04d23; /* Brand orange */
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #d63a12;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .social-icons {
    gap: 15px;
  }
  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* ---------------------------
   Responsive
---------------------------- */
@media screen and (max-width:768px){
    nav ul {flex-direction: column;align-items:center;}
    nav ul li {margin:10px 0;}
    .products {flex-direction: column; align-items:center;}
}

/* ---------------------------
   Banner Section
---------------------------- */
.banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #f4f4f4;
    padding: 50px 20px;
    gap: 30px;
}

.banner-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.banner-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #F25400;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.banner-text .btn {
    background: #F25400;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.banner-text .btn:hover {
    background: #d34400;
}

/* Video Wrapper for Responsive Iframe */
.banner-video {
    flex: 1;
    min-width: 300px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive for smaller devices */
@media screen and (max-width:768px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-text, .banner-video {
        text-align: center;
    }
}
/* ---------------------------
   Reviews Section
---------------------------- */
.reviews {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.reviews h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #F25400;
}

.review-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.review-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    flex: 1 1 250px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.review-card p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.review-card strong {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Responsive */
@media screen and (max-width:768px) {
    .review-cards {
        flex-direction: column;
        align-items: center;
    }
}

