/* =========================
   NAVBAR ONLY CSS
========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */

.header{
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  padding: 15px 6%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);

  z-index: 1000;
}

/* LEFT SIDE */

.nav-left{
  display: flex;
  align-items: center;
  gap: 15px;
}

/* LOGO TEXT */

.logo{
  color: white;
  text-decoration: none;
  font-size: 26px;
  font-weight: 800;
}

/* RIGHT SIDE */

.nav-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* RIGHT LOGO */

.nav-logo{
  width: 42px;
  height: 42px;
  object-fit: cover;

  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.08);
  padding: 4px;

  transition: 0.3s ease;
}

.nav-logo:hover{
  transform: scale(1.08) rotate(8deg);
  border-color: #22c55e;
  box-shadow: 0 0 18px rgba(34,197,94,0.4);
}

/* DESKTOP NAV */

.navbar{
  display: flex;
  align-items: center;
  gap: 28px;
}

/* LINKS */

.navbar a{
  color: white;
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  position: relative;
  transition: 0.3s ease;
}

.navbar a:hover{
  color: #22c55e;
}

/* UNDERLINE */

.navbar a::after{
  content: "";
  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: #22c55e;
  transition: 0.3s ease;
}

.navbar a:hover::after{
  width: 100%;
}

/* MENU BUTTON */

.menu-btn{
  width: 45px;
  height: 45px;

  display: none;
  justify-content: center;
  align-items: center;

  background: rgba(255,255,255,0.08);
  border-radius: 10px;

  color: white;
  font-size: 20px;

  cursor: pointer;
  transition: 0.3s ease;
}

.menu-btn:hover{
  background: #22c55e;
  transform: rotate(90deg);
}

/* BUTTONS */

.lang-btn,
.login-btn{
  padding: 8px 14px;

  border: none;
  outline: none;

  border-radius: 8px;

  color: white;

  cursor: pointer;
  transition: 0.3s ease;
}

.lang-btn{
  background: rgba(255,255,255,0.08);
}

.lang-btn:hover{
  background: #334155;
}

.login-btn{
  background: #22c55e;
  text-decoration: none;
}

.login-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34,197,94,0.3);
}

/* DROPDOWN */

.dropdown{
  position: relative;
}

.dropdown-btn{
  color: white;
  font-size: 16px;

  display: flex;
  align-items: center;
  gap: 6px;

  cursor: pointer;
}

.sub-menu{
  position: absolute;
  top: 40px;
  left: 0;

  width: 230px;

  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  padding: 12px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s ease;
}

.dropdown:hover .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu a{
  font-size: 14px;
  color: #d1d5db;
}

.sub-menu a:hover{
  color: #22c55e;
}

/* =========================
   MOBILE ONLY NAV
========================= */

@media(max-width:768px){

  .menu-btn{
    display: flex;
  }

  .navbar{
    position: fixed;

    top: 20px;
    left: -100%;

    width: 260px;
    height: calc(100vh - 40px);

    flex-direction: column;
    align-items: center;

    padding-top: 90px;

    gap: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;

    transition: 0.4s ease;

    overflow-y: auto;
  }

  .navbar.active{
    left: 15px;
  }

  /* hide logo in mobile */

  .logo,
  .nav-logo{
    display: none;
  }

  .navbar a{
    font-size: 18px;
  }

  .dropdown{
    width: 100%;
    text-align: center;
  }

  .dropdown-btn{
    justify-content: center;
    font-size: 18px;
  }

  .sub-menu{
    position: static;

    width: 100%;
    background: transparent;
    border: none;

    opacity: 1;
    visibility: visible;

    max-height: 0;
    overflow: hidden;

    padding: 0;
  }

  .dropdown.active .sub-menu{
    max-height: 400px;
  }
}

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("assets/images/1.jpg");

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated Background */

.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.15) 0%,
    transparent 60%
  );

  animation: rotateBg 18s linear infinite;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
  color: white;
  padding: 20px;

  animation: fadeUp 1.5s ease;
}

/* Badge */

.hero-badge {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;

  animation: fadeIn 2s ease;
}

/* Heading */

.hero-content h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;

  animation: slideUp 1.2s ease;
}

/* Paragraph */

.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 40px;

  animation: slideUp 1.5s ease;
}

/* Buttons */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  animation: fadeIn 2s ease;
}

.btn {
  padding: 16px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* Primary Button */

.primary-btn {
  background: #22c55e;
  color: white;
}

.primary-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

/* Secondary Button */

.secondary-btn {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.secondary-btn:hover {
  background: white;
  color: black;
  transform: translateY(-6px);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }
}

/* Sections */

section {
  padding: 80px 8%;
  background-color: #071426;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  color: #0b1f3a;
}

/* About */

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 10px;
}

/* Services */

.service-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 204, 0, 0.1);
  transition: 0.5s;
}

.service-box:hover::before {
  left: 100%;
}

.service-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Projects */

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.projects img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.5s;
  cursor: pointer;
}

.projects img:hover {
  transform: scale(1.08);
}
/* Contact */

.contact {
  background: #0b1f3a;
  color: white;
  border-radius: 10px;
}

.contact h2 {
  color: white;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 20px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
}

.contact button {
  background: #ffcc00;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

/* Statistics Section */

.stats {
  background: #0b1f3a;
  color: white;
  padding: 60px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box {
  transition: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h2 {
  font-size: 50px;
  color: #ffcc00;
  margin-bottom: 10px;
}
/* Premium Services */

.stats {
  background: linear-gradient(135deg, #071426, #102b4e);
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.stat-box:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.stat-box h2 {
  font-size: 55px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 12px;
}

.stat-box p {
  font-size: 18px;
  color: #dbeafe;
  letter-spacing: 1px;
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #071426;
}

/* SECTION */
.testimonials {
  padding: 80px 8%;
  color: white;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 35px;
  color: #22c55e;
}

.section-title h2 {
  font-size: 40px;
  color: #00d4ff;
}

/* FORM */
.comment-form {
  max-width: 600px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-form input,
.comment-form textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: #102b4e;
  color: white;
}

.comment-form textarea {
  min-height: 100px;
  resize: none;
}

.comment-form button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #00d4ff;
  cursor: pointer;
  font-weight: bold;
}

/* CAROUSEL */
.testimonial-wrapper {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.testimonial-carousel {
  text-align: center;
}

.testimonial-slide {
  display: none;
  background: #102b4e;
  padding: 40px;
  border-radius: 20px;
}

.testimonial-slide.active {
  display: block;
}

.message {
  font-size: 18px;
  margin-bottom: 15px;
  color: #e2e8f0;
}

.testimonial-slide h3 {
  color: #00d4ff;
}

.prev {
  left: -50px;
}
.next {
  right: -50px;
}

.prev {
  left: -60px;
}
.next {
  right: -60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }

  .testimonial-slide {
    padding: 30px 20px;
  }

  .message {
    font-size: 16px;
  }

  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }
}
/* Buttons */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffcc00;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: 0.4s;
}

.prev:hover,
.next:hover {
  background: #0b1f3a;
  color: white;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Animation */

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .testimonial-slide {
    padding: 30px;
  }

  .testimonial-slide p {
    font-size: 16px;
  }
}
/* CTA Section */

.cta-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("assets/images/2.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 8%;
}

.cta-section h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Responsive */

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 35px;
  }

  .company-content h2 {
    font-size: 32px;
  }
}
.user {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.user img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00d4ff;
}
/* RATING STARS */
.rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 25px;
  cursor: pointer;
  margin-bottom: 10px;
}

.rating span {
  color: #555;
  transition: 0.2s;
}

.rating span.active {
  color: #ffd700;
}

/* STARS DISPLAY */
.stars {
  color: #ffd700;
  font-size: 18px;
  margin: 10px 0;
}

/* LIKE BUTTON */
.like-btn {
  margin-top: 10px;
  background: #00d4ff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.like-btn:hover {
  background: white;
}

/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #071426;
  color: white;
}

/* =========================
   COMMENT FORM
========================= */
.comment-form {
  max-width: 600px;
  margin: 60px auto 30px;
  padding: 25px;
  background: #102b4e;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.comment-form input,
.comment-form textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: #1b3d6b;
  color: white;
  font-size: 15px;
}

.comment-form textarea {
  min-height: 100px;
  resize: none;
}

/* submit button */
.comment-form button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #00d4ff;
  color: #071426;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.comment-form button:hover {
  background: white;
}

/* =========================
   RATING STARS
========================= */
.rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 25px;
  cursor: pointer;
}

.rating span {
  color: #555;
  transition: 0.2s;
}

.rating span:hover,
.rating span:hover ~ span {
  color: #ffd700;
}

/* =========================
   AVERAGE RATING BOX
========================= */
.rating-summary {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  max-width: 250px;
  background: #102b4e;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.rating-summary h3 {
  color: #00d4ff;
  margin-bottom: 8px;
}

#avgRating {
  font-size: 35px;
  font-weight: bold;
  color: #ffd700;
}

#totalReviews {
  color: #cbd5e1;
  margin-top: 5px;
}

/* =========================
   TESTIMONIAL SLIDER
========================= */
.testimonial-wrapper {
  max-width: 700px;
  margin: 40px auto;
  position: relative;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-slide {
  display: none;
  background: #102b4e;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fade 0.5s ease;
}

.testimonial-slide img.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00d4ff;
  margin-bottom: 10px;
}

/* text */
.testimonial-slide h3 {
  color: #00d4ff;
  margin-bottom: 5px;
}

.testimonial-slide small {
  color: #94a3b8;
  display: block;
  margin-bottom: 10px;
}

.testimonial-slide p {
  color: #e2e8f0;
  margin: 15px 0;
}

/* like button */
.testimonial-slide button {
  background: #00d4ff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.testimonial-slide button:hover {
  background: white;
}

/* =========================
   ANIMATION
========================= */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .comment-form {
    width: 90%;
  }

  .testimonial-slide {
    padding: 25px;
  }

  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }
}
.admin-panel {
  display: none;
  max-width: 300px;
  margin: 20px auto;
  padding: 15px;
  background: #102b4e;
  border-radius: 10px;
  text-align: center;
}

.admin-panel input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
}

.admin-panel button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #00d4ff;
  font-weight: bold;
  cursor: pointer;
}

#adminStatus {
  margin-top: 10px;
  color: #ffd700;
}
.admin-panel.show{

  display: block;
}
.delete-btn {
  margin-left: 10px;
  background: red;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* FOOTER */
.footer {
  background: #111;
  color: white;
  padding: 60px 10% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-box h2,
.footer-box h3 {
  margin-bottom: 20px;
}

.footer-box p,
.footer-box li {
  color: #ccc;
  line-height: 1.5;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-box img {
  width: 50px;
  color: #ccc;
  text-decoration: none;
}
.footer-box img:hover {
  width: 50px;
  transition: 0.5s;
  transform: translateY(-3px);
}

.footer-box ul li a:hover {
  color: #ff9800;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ff9800;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #333;
}
.fa-diagram-project {
  font-size: 80px;
}
.service-icon {
  font-size: 40px;
}
.stat-box img {
  width: 60px; /* adjust size */
  height: 60px; /* keeps it balanced */
  object-fit: contain;
  display: block;
  margin: 0 auto 10px; /* center + spacing */
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px; /* keeps image + text same line */
}

.logo img {
  width: 70px;
  height: auto;
  display: block;
}

.logo p {
  margin: 0px;
  margin-top: 10px; /* IMPORTANT: removes default space */
  font-size: 28px;
  font-weight: bold;
  color: #ffcc00;
}
@media (max-width: 768px) {
  .logo img,
  .logo p {
    display: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 30px;
  height: 30px;
}
/* PROJECT SLIDER */

.projectSwiper {
  width: 100%;
  padding: 50px 0;
}

.project-card {
  position: relative;
  overflow: hidden;

  border-radius: 20px;

  width: 100%;
  height: 500px;
}
.project-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.project-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 30px;

  color: white;
}

.project-overlay h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.project-overlay p {
  font-size: 16px;
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Swiper Buttons */

.swiper-button-next,
.swiper-button-prev {
  color: #00b894;
}

/* Pagination */

.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #00b894;
}
/* MULTI PHOTO CARD */

.multi-photo-card {
  position: relative;

  overflow: hidden;

  border-radius: 15px;
}

/* 4 IMAGE GRID */

.photo-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 5px;
}

.photo-grid img {
  width: 100%;

  height: 250px;

  object-fit: cover;

  display: block;
}

/* OVERLAY */

/* MOBILE */

@media (max-width: 768px) {
  .photo-grid img {
    height: 150px;
  }
}
