/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #222;
}

/* Container */
.main {
  width: 100%;
  padding: 20px;
}

/* Navigation Bar */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.nav-part-1 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-part-1 img {
  height: 40px;
}

.nav-part-1 ul {
  display: flex;
  gap: 25px;
  list-style: none;

}

.nav-part-1 ul li {
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
 
}

.nav-part-1 ul li:hover {
  color: #ff3c00;
}

.nav-part-2 {
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.nav-part-2 i {
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-part-2 i:hover {
  color: #ff3c00;
}

/* Content Section */
.content {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.content-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.content-left h5 {
  color: #ff3c00;
  margin-bottom: 10px;
  font-weight: 600;
}

.content-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-left p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  padding: 10px 25px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#ofadatech {
  background: rgb(3, 3, 88);  
}
#datanomics {
     background: rgb(56, 56, 219)
}
#ogis {
    background-color: purple;
}
#isua {
    background: linear-gradient(to right, gold 10%, green 30%, blue 50%);}
    
#iye{
    background: rgb(73, 126, 224);
}
#parlia
{background: rgb(85, 73, 6);}

#Ugbeh{
    background: #c569c5;
}

.btn:hover {
  background: #ff3c00;
}

/* Product Grid */
.content-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.product {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product p {
  font-size: 0.9rem;
  margin: 3px 0;
}
.footer{
     text-align: center;
     color: blue ;
}
#ofada_logo{
    height: 30px;
    width: 30px;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-part-1 ul {
    display: none;
  }

  .content {
    flex-direction: column;
    align-items: center;
  }

  .content-left, .content-right {
    max-width: 100%;
  }
}

