* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

.logo .highlight {
  color: white;
  background: red;
  padding: 2px 6px;
  border-radius: 4px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar a.active {
  padding-bottom: 4px;
}

.navbar a.buy {
  color: #e74c3c;
  font-weight: 600;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* Hero */
.hero img {
  width: 95%;
  height: 400px;
  object-fit: cover;
  padding-left: 55px;
  position: center;
  margin-top:55px ;
}

.hero-text {
  text-align: center;
  margin: 20px auto;
  max-width: 700px;
}

.hero-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

/* Sections */
.section {
  padding: 50px ;
  
}

.section-title {
  font-size: 22px;
  margin-bottom:40px;
  border-top: 3px solid #e74c3c ;
  padding-left: 10px;
  display: inline;
  padding-top: 30px;

  
}

/* Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  font-size: 25px;
  color: black;
  font-weight: 200;
}

/* Grid */
.grid-two {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  
}

.card-container.small .card {
  flex: 1 1 calc(50% - 20px);
}

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.member img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
}

/* Footer */
footer {
  background: #f8f8f8;
  padding: 50px 10%;
  margin-top: 50px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-grid h3 {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-two,
  .footer-grid,
  .team {
    grid-template-columns: 1fr 1fr;
  }

  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: flex;
  }

  .navbar ul {
    position: absolute;
    top: 70px;
    right: 10%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .navbar ul.active {
    display: flex;
  }

  .hero img {
    height: 250px;
  }

  .card {
    flex: 1 1 100%;
  }

  .grid-two,
  .footer-grid,
  .team {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px ;
  }
}
/* Hamburger styling (match site theme) */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #333;
  background: #f4f4f4;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: #e74c3c;
  color: white;
}

/* Only show on mobile */
@media (max-width: 700px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


ul li:hover{
    color: aliceblue;
    border-bottom:  darkslategray solid 3px;
}
/* Two-column section */
.two-column {
  display: flex;
  gap: 40px;
  align-items: start;
  padding-top: 70px;
  background-color: whitesmoke;
}

.left-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
  display: flex;
  

}

.read-more {
  background: lightcyan;
  color:gray;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}

.read-more:hover {
  background:lightgray;
  
}

/* Team (Right Column) */
.left-content{
  width: 30%;
}
.right-content{
  width: 70%;
}
.team-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  
  
  
}

.team-small .member {
  
  display: flex;
  
}

.team-small img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 10px;
  width: 150px;
}

.team-small h4 {
  font-size: 25px;
    padding-left: 10px;
  font-weight: 600;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 200;
  
}

.team-small p {
  font-size: 15px;
  color: #777;
  padding-left: 10px;
  font-family: 'Times New Roman', Times, serif;
}

/* Responsive */
@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }
c
  .team-small {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .team-small {
    grid-template-columns: 1fr;
  }
}
.img{
  display: flex;
  flex-direction: column;
}
.top-banner{

  display: inline;
  text-align: center;
}
.banner{
  text-align: center;
}
.copyright{
  text-align: center;
  
}
.use{
  font-size: 25px;
  font-weight: 200;
}
.i{
  font-size: 20px;
}
.list-style-top{
  font-size: 20px;
}


.list-style-bottom{
  font-size: 20px;
}
.s{
  font-size: 14px;
}
.design{
  font-size: 30px;
}

/* Media qouries */

/* ======= Large Tablets (max 1100px) ======== */
@media(max-width:1100px){
  .navbar{
    padding: 15px 5%;
  }
  .section{
    padding:40px 5%;
  }
  .two-column{
    gap:20px;
  }
}

/* ============= Tablets (max 900px) ============= */
@media(max-width:900px){

  .grid-two{
    flex-direction: column;
  }

  .left-content,
  .right-content{
    width:100%;
  }

  .team-small{
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }

  .card{
    flex:1 1 calc(50% - 20px);
  }
}

/* =========== Small Tablets (max 768px) ============ */
@media(max-width:768px){
  
  .hero img{
    height:300px;
    padding-left:0;
    width:100%;
  }

  .card-container{
    gap:15px;
  }

  .navbar{
    padding:15px 4%;
  }
}

/* =========== MOBILE (max 600px) =============== */
@media(max-width:600px){

  .menu-toggle{
    display:flex;
  }

  nav ul {
    flex-direction: column;
    width: 200px;
    right: 5%;
    top: 70px;
  }

  .card{
    flex:1 1 100%;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .team-small{
    grid-template-columns:1fr;
  }

  .hero-text h2{
    font-size:20px;
  }

  .section-title{
    font-size:18px;
  }

  .read-more{
    width:100%;
  }
}

/* =========== SMALL MOBILE (max 450px) ========== */
@media(max-width:450px){

  .hero img{
    height:230px;
  }

  .card h3{
    font-size:18px;
  }

  .section{
    padding:25px 10px;
  }

  footer{
    padding:30px 5%;
  }
}

  
  

