* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.head {
  background-color: #f7f9fa;;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: cyan;
}

/* Hamburger Icon */
.hamburger {
  width: 30px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: black;
  height: 3px;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger Animation - Turn into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    padding-left: 20px;
    width: 100%;
    display: none;
    padding: 20px 10px;
    animation: slideDown 0.4s ease forwards;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.semi-header {
    background-image: url('images/logo10.png');
    background-size: cover;
    /* background-position: center; */
     height: 350px; 
}

.row {
   padding-top: 70px;
   padding-left: 70px;
   color: white;
   font-size: 30px;
}

.row h2 {
    @media screen and (max-width: 768px){
     font-size: 28px;
    }
}

.row p {
    margin-top: 15px;
     @media screen and (max-width: 768px){
     font-size: 20px;
    }
}

.row button {
    background: #00c2cb;
    border: #00c2cb;
    margin-top: 20px;
    width: 13vw;
    height: 5vh;
    border-radius: 6px;
    color: #fff;

     @media screen and (max-width: 768px){
     width: 200px;
     height: 7vh;
     font-size: 20px;
     margin-top: 30px;
    }
}

/* What We Offer */

.what-we-offer {
    padding: 80px 20px;
    background: #f7f9fa;
    text-align: center;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    margin-bottom: 40px;
   
}

.offer-card:hover {
    transform: translateY(-5px);
}

.icon-bg {
     margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg img {
    height: 10vh;
    border-radius: 50%;
}

.offer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.offer-desc {
font-size: 16px;
line-height: 1.6;
color: #4f4f4f;
}

.step-number {
    background: #00c2cb;
    color: white;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items:  center;
    justify-content: center;
    font-weight: bold;
}


  
/* testimonials */
.testimonial {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.avatar {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1);
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.testimonial-name {
  font-weight: bold;
  margin: 5px 0 0;
  font-size: 1.1rem;
  color: #222;
}

.testimonial-role {
  color: #777;
  font-size: 0.95rem;
}



/* plans */

.pricing-preview {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.plan-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 75px;
    background: #f9fafb;
    transition: transform 0.3s;
}

.plan-card p {
    padding-top: 30px;
}


.plan-card .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.plan-card .btn:hover {
  background: #0056b3;
}

.plan-card:hover {
    transform: translateY(-5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.popular {
    border: 2px solid #00c2cb;
    background: #ffffff;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.plan-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00c2cb;
}

.plan-price span {
 font-size: 16px;
 color: #666;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.plan-features li {
    font-size: 16px;
    color: #4f4f4f;
    margin-bottom: 10px;
}

.plan-button {
    display: inline-block;
    background: #00c2cb;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.plan-button:hover {
    background: #0099a8;
}


.founder-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f9ff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-top: 30px;
}

.founder-section h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #003366;
}

.founder-subtitle {
   font-size: 2.2em;
   color: #007acc;
   margin-bottom: 20px;
   font-weight: 500;
}

.founder-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #007acc;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.founder-img:hover {
  transform: scale(1.05);
}

.founder-section p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.fade-in {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* Team Grid */
 .team-grid{
  text-align: center;
  padding: 40px 20px;
}

.team-cards {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     margin-top: 50px;
     gap: 30px;
}



.team-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;

}

.team-card:hover {
  transform: scale(1.03);
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0047ab;
  margin-bottom: 1rem;
}

.team-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  color: #0047ab;
}

.team-card .role {
  font-size: 0.9rem;
  font-style: italic;
  color: #666;
  margin-bottom: 0.6rem;
}



  
/* footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 20px 30px;

     @media screen and (max-width: 780px){
       padding: 50px 15px;
}
    }

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;

}

.footer-logo img {
    width: 150px;
}

.footer-links {
    display: flex;
    gap: 60px;

    @media screen and (max-width: 780px){
    gap: 20px;
}
}

.footer-column {
    min-width: 150px;
} 

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;

}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}


.footer-column ul li a {
color: #cccccc;
text-decoration: none;
font-size: 14px;
margin-left: 30px;

@media screen and (max-width: 450px) {
    padding-right: 30px;
}
}

.footer-column ul li a:hover {
    color: #00c2cb;
}

.footer-buttom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    text-align: center;
}

.footer-buttom p {
    font-size: 14px;
    color: #aaaaaa;
}

.footer-socials a img {
    width: 24px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f2f6fa, #e4f0ff);
  color: #333;
  animation: fadeInBody 1.2s ease-in;
}

@keyframes fadeInBody {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}


@keyframes slideInDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
