body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  width: 100%;
  height: 80px;
  background: #1f4468;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 52px;
  height: 52px;
  background: #ffd400;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #16324f;
}

.logo h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

/* Menu */

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ffd400;
}

/* Buttons */

.nav-buttons {
  display: flex;
  gap: 15px;
}

.book-btn {
  background: #ffd400;
  color: #000;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 35px;
  font-size: 17px;
  font-weight: bold;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ffbf00;
}

/* Book Now Button */
.book-now {
  background: #ffd400;
  color: #000;
  text-decoration: none;

  padding: 18px 35px;
  border-radius: 35px;

  font-size: 17px;
  font-weight: bold;

  display: inline-block;
  margin-bottom: 20px; 
  margin-top: 30px;
/* margin-left: 600px; */
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.45),
    0 0 25px rgba(255, 212, 0, 0.35);

  transition: all 0.3s ease;
}

.book-now:hover {
  background: #ffbf00;
  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(255, 212, 0, 0.6),
    0 0 35px rgba(255, 212, 0, 0.5);
}
.login-btn {
  background: #fff;
  color: #1f4468;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 35px;
  font-size: 17px;
  font-weight: bold;
  transition: 0.3s;
}

.login-btn:hover {
  background: #ececec;
}

/* Responsive */
/* Hamburger */
/* =========================
   Hamburger
========================= */

.hamburger {
  display: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* =========================
   Tablet Responsive
========================= */

@media (max-width: 992px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links {
    gap: 25px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .book-btn,
  .login-btn {
    padding: 12px 18px;
    font-size: 15px;
  }
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
  }

  .logo {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .logo h2 {
    font-size: 22px;
  }

  .logo-box {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    background: #1f4468;
  }

  .nav-buttons {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    background: #1f4468;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-buttons.active {
    display: flex;
  }

  .book-btn,
  .login-btn {
    width: 90%;
    text-align: center;
  }
}

/* =========================
   Small Mobile
========================= */

@media (max-width: 480px) {
  .logo h2 {
    font-size: 20px;
  }

  .nav-links li a {
    font-size: 15px;
  }

  .book-btn,
  .login-btn {
    width: 95%;
  }
}
.hero {
  min-height: 520px;

 background: linear-gradient(
    135deg,
    #0f2747,
    #a6cde8,
    #1f5f8b
  );

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 80px;
  padding: 40px;
}


/* Booking Card */

.booking-card {
  background: white;
  width: 510px;
  padding: 32px;
  border-radius: 25px;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.booking-header h2 {
  color: #21476b;
  font-size: 24px;
}

.booking-header p {
  color: #8792a5;
  margin-top: 12px;
}

.input-box {
  height: 47px;
  border: 1px solid #d9dee7;
  border-radius: 12px;

  margin-top: 16px;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 0 15px;
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

.input-box input::placeholder {
  color: #a3adbd;
  font-weight: 600;
}

.green-dot {
  width: 10px;
  height: 10px;
  background: #20c768;
  border-radius: 50%;
}

.square {
  width: 10px;
  height: 10px;
  background: #16456c;
}


/* Buttons */

.booking-type,
.date-time {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.booking-type button,
.date-time button {
  width: 50%;
  height: 45px;

  border-radius: 12px;
  border: 1px solid #dce1e9;

  background: white;

  font-weight: bold;
}

.booking-type .active {
  background: #ffd900;
  border: none;
}

.date-time button {
  border: 1px solid #ff4b55;
  color: #ff3c45;
}

.price-btn {
  width: 100%;
  height: 47px;

  margin-top: 25px;

  border: none;
  border-radius: 12px;

  background: #ffd900;

  font-weight: bold;
  font-size: 15px;
}


/* Right Content */

.hero-content {
  max-width: 430px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.25;
  text-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.hero-content h1 span {
  color: #ffd900;
}

.hero-content p {
  color: #f1f5f9;
  font-size: 17px;
  margin-top: 18px;
  line-height: 1.5;
}
.experience-section {
  padding: 80px 8%;
  background: #fff;
}

.experience-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* logo */

.logo-img {
  width: 280px; /* logo bada */
  height: auto;

  display: block;
  object-fit: contain;

  background: transparent;
  mix-blend-mode: multiply;

  transition: 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.08);
}

/* Car Image */
.hero-car {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-top: 5px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
  animation: carMove 3s ease-in-out infinite;
}

@keyframes carMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Left Content */

.experience-content {
  width: 45%;
}

.small-title {
  color: #ffd000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.experience-content h2 {
  color: #123b5a;
  font-size: 28px;
  margin: 15px 0 25px;
  font-weight: 700;
}

.experience-content p {
  color: #29465f;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.experience-content a {
  color: #123b5a;
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
}

/* car-img Box */
.travel-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: transparent; /* White background hata diya */
}

.travel-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  filter: none;
  transition: 0.4s ease;
}

.travel-image img:hover {
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 900px) {
  .experience-container {
    flex-direction: column;
  }

  .experience-content,
  .video-box {
    width: 100%;
  }

  .video-box {
    height: 280px;
  }
}

/* testimonals */
.testimonials {
  background: #f8f8f8;
  padding: 80px 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: #f4b400;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title h2 {
  margin-top: 10px;
  font-size: 42px;
  color: #0f3b67;
}

.testimonial-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  width: 390px;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #f4c300;
  font-size: 22px;
  margin-bottom: 20px;
}

.review {
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.user h4 {
  font-size: 20px;
  color: #1d2b4f;
  margin-bottom: 4px;
}

.user span {
  color: #777;
  font-size: 15px;
}

/* cab booking section */
/* Cab Section */

.cab-section{
    padding:80px 8%;
    background:#f7f9fc;
}


.section-heading{
    text-align:center;
    margin-bottom:50px;
}


.section-heading span{
    color:#ffd400;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}


.section-heading h2{
    font-size:42px;
    color:#123b66;
    margin:12px 0;
}


.section-heading p{
    color:#64748b;
    font-size:17px;
}



/* Cards Container */

.cab-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}



/* Card */

.cab-card{

    background:white;
    border-radius:22px;
    padding:25px;
    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.10);

    transition:0.4s ease;

    overflow:hidden;

}



.cab-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 20px 45px rgba(18,59,102,0.25);

}



/* Image */

.cab-card img{

    width:100%;
    height:160px;

    object-fit:contain;

    transition:0.4s ease;

}



.cab-card:hover img{

    transform:scale(1.08);

}



/* Text */

.cab-card h3{

    color:#123b66;
    font-size:26px;
    margin:20px 0 10px;

}


.cab-card p{

    color:#64748b;
    font-size:15px;
    line-height:1.5;

}



/* Info */

.cab-info{

    display:flex;
    justify-content:space-between;

    margin:20px 0;

    padding:12px;

    background:#f1f5f9;

    border-radius:12px;

}


.cab-info span{

    color:#123b66;
    font-weight:700;

}



/* Button */


.book-cab-btn{

    display:block;

    background:#ffd400;

    color:#000;

    text-decoration:none;

    padding:14px;

    border-radius:30px;

    font-weight:bold;

    transition:0.3s ease;

}



.book-cab-btn:hover{

    background:#123b66;

    color:white;

    transform:scale(1.05);

    box-shadow:
    0 8px 20px rgba(18,59,102,0.35);

}



/* Responsive */


@media(max-width:1100px){

    .cab-container{

        grid-template-columns:repeat(2,1fr);

    }

}



@media(max-width:600px){

    .cab-container{

        grid-template-columns:1fr;

    }


    .section-heading h2{

        font-size:30px;

    }

}
/* app section */
/* ===== Fare Section ===== */

.fare-section {
  margin-left: 100px;
  background: #f8f9fc;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  border-radius: 30px;
  background: #0d6efd;
}

.fare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fare-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e9eef5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.fare-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.18);
}

.card-head {
  background: linear-gradient(135deg, #0d6efd, #1b7cff);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th {
  background: #f8fbff;
  color: #222;
  padding: 16px 18px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #edf2f7;
}

table td {
  padding: 15px 18px;
  border-bottom: 1px solid #edf2f7;
  color: #555;
  transition: 0.3s;
}

table th:last-child,
table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #0d6efd;
}

tbody tr {
  transition: 0.3s ease;
}

tbody tr:hover {
  background: #f4f9ff;
}

tbody tr:hover td {
  color: #0d6efd;
  padding-left: 22px;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {
  .fare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .fare-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .card-head {
    font-size: 18px;
    padding: 15px;
  }

  table th,
  table td {
    padding: 14px;
    font-size: 14px;
  }
}
.notch {
  width: 105px;
  height: 22px;
  background: #071b34;
  border-radius: 0 0 15px 15px;

  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo-box {
  width: 70px;
  height: 70px;
  background: #ffd400;
  border-radius: 15px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;
  font-weight: bold;
  color: #143f66;
}

.phone-screen h4 {
  margin-top: 20px;
  color: #333;
  font-size: 20px;
}

/* footer section */
.footer {
  background: #07162e;
  color: #fff;
  padding: 60px 4% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.footer-col h2 span {
  font-weight: 700;
}

.footer-col p {
  color: #9aa7b8;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #9aa7b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a2740;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer hr {
  border: none;
  height: 1px;
  background: #1f2f4a;
  margin: 40px 0;
}

/* Bottom Links */

.footer-links h4 {
  font-size: 14px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.link-group a {
  color: #9aa7b8;
  text-decoration: none;
  font-size: 14px;
}

.link-group a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  color: #8b96a7;
  font-size: 13px;
  margin-top: 20px;
}

/* responsive */
/* ================= RESPONSIVE DESIGN ================= */

/* Large Tablet */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links {
    gap: 25px;
  }

  .hero {
    gap: 40px;
  }

  .booking-card {
    width: 450px;
  }

  .business-content h2 {
    font-size: 38px;
  }

  .business-content p {
    font-size: 18px;
  }

  .testimonial-card {
    width: 350px;
  }

  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Tablet */

@media (max-width: 992px) {
  /* Navbar */

  .navbar {
    height: auto;
    padding: 20px 30px;
    flex-direction: column;
    gap: 25px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-buttons {
    justify-content: center;
  }

  /* Hero */

  .hero {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }

  .booking-card {
    width: 100%;
    max-width: 520px;
  }

  .hero-content {
    max-width: 600px;
  }

  /* Experience */

  .experience-container {
    flex-direction: column;
  }

  .experience-content,
  .video-box {
    width: 100%;
  }

  /* Testimonials */

  .testimonials {
    padding: 60px 30px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  /* Business */

  .container {
    flex-direction: column;
    gap: 40px;
  }

  .business-content,
  .driver-card {
    width: 100%;
  }

  .business-content h2 {
    font-size: 36px;
  }

  /* App Section */

  .app-section {
    height: auto;
    padding: 60px 30px;
  }

  .app-content {
    text-align: center;
    max-width: 100%;
  }

  .phone-wrapper {
    margin-top: 40px;
  }

  /* Footer */

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  /* Navbar */

  .navbar {
    padding: 20px;
  }

  .logo h2 {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }

  .book-btn,
  .login-btn {
    text-align: center;
  }

  /* Hero */

  .hero {
    padding: 30px 15px;
  }

  .booking-card {
    padding: 20px;
    border-radius: 18px;
  }

  .booking-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .booking-type,
  .date-time {
    flex-direction: column;
  }

  .booking-type button,
  .date-time button {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .app-box {
    width: 100%;
  }

  /* Experience */

  .experience-section {
    padding: 50px 20px;
  }

  .experience-content h2 {
    font-size: 25px;
  }

  .experience-content p {
    font-size: 15px;
  }

  .video-box {
    height: 240px;
  }

  /* Testimonials */

  .testimonials {
    padding: 50px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .testimonial-card {
    width: 100%;
    padding: 25px;
  }

  .review {
    font-size: 15px;
  }

  /* Business */

  .business-driver-section {
    padding: 50px 20px;
  }

  .business-content h2 {
    font-size: 30px;
  }

  .business-content p {
    font-size: 16px;
  }

  .features li {
    font-size: 16px;
  }

  .driver-card {
    min-width: auto;
    padding: 20px;
  }

  .card-header h3 {
    font-size: 24px;
  }

  /* App */

  .app-section {
    padding: 50px 20px;
  }

  .app-content h2 {
    font-size: 30px;
  }

  .phone {
    width: 210px;
    height: 420px;
  }

  /* Footer */

  .footer {
    padding: 50px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .link-group {
    justify-content: center;
  }
}

/* navbar responsive */
/* Mobile Menu Glass Effect */

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;

    width: 100%;

    background: rgba(31, 68, 104, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 25px 0;

    z-index: 99;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .nav-buttons {
    position: absolute;
    top: 300px;
    left: 0;

    width: 100%;

    background: rgba(31, 68, 104, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    padding-bottom: 25px;

    z-index: 99;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .nav-buttons.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }
}

/* ================= TAXI FARE RESPONSIVE ================= */

/* Large Tablet */

@media (max-width: 1200px) {
  .fare-section {
    margin-left: 0;
    padding: 60px 5%;
  }

  .fare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .fare-card {
    width: 100%;
  }
}

/* Tablet */

@media (max-width: 768px) {
  .fare-section {
    margin-left: 0;
    padding: 50px 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .fare-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .fare-card {
    width: 100%;
    border-radius: 15px;
  }

  .card-head {
    font-size: 18px;
    padding: 16px;
  }

  table th,
  table td {
    padding: 13px 12px;
    font-size: 14px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .fare-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .card-head {
    font-size: 16px;
  }

  table {
    font-size: 13px;
  }

  table th,
  table td {
    padding: 10px 8px;
  }

  table td:last-child,
  table th:last-child {
    text-align: right;
  }

  .fare-card {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
}


/* hero-content responsive */
/* Hero Content Responsive */

.hero-content{
    max-width: 430px;
    width: 100%;
}


/* Tablet */

@media(max-width: 992px){

    .hero-content{
        text-align: center;
        max-width: 600px;
    }

    .hero-content h1{
        font-size: 32px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .logo-img{
        width: 220px;
        margin: 20px auto 0;
    }

}


/* Mobile */

@media(max-width: 600px){

    .hero-content{
        width: 100%;
        padding: 0 15px;
        text-align: center;
    }


    .hero-content h1{
        font-size: 26px;
        line-height: 1.3;
    }


    .hero-content p{
        font-size: 15px;
        line-height: 1.5;
        margin-top: 15px;
    }


    .logo-img{
        width: 170px;
        height: auto;
        margin: 20px auto 0;
        display: block;
    }

}


/* Small Mobile */

@media(max-width:400px){

    .hero-content h1{
        font-size: 23px;
    }

    .hero-content p{
        font-size: 14px;
    }

    .logo-img{
        width: 140px;
    }

}