* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  color: #333;
}

.logo img {
  height: 30px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: white;
  border-bottom: 1px solid #ddd;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.download {
  color: #0040ff;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.download svg {
  margin-right: 5px;
  width: 14px;
  height: 14px;
}

.signin {
  display: flex;
  align-items: center;
  padding: 2px 15px 2px 2px;
  background: #002970;
  border-radius: 18px;
  gap: 5px;
  color:white;
  font-weight: 500;
  font-size: 14px;
  min-width: 90px;
  max-width: 115px;
  margin-right: 3px;
}

.signin img {
  height: 32px;
  width: 32px;
}

.main {
  background-color: #e6f7ff;
  padding: 30px 60px;
}

.tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.tab.active {
  border: 1px solid blue;
}

.search-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.trip-type label {
  margin-right: 20px;
  font-size: 14px;
}

.inputs {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.input-group span {
  font-size: 10px;
}

.input-group h4 {
  font-size: 14px;
}

.input-group .blue4 {
  color: #00baf2;
  font-size: 16px;
  font-weight: 600;
}

.search-btn {
  background: #00baf2;
  color: #fff;
  font-size: 16px;
  height: 52px;
  width: 154px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.special-fares {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.special-fares div {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid hsla(0, 0%, 6%, 0.13);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.special-fares .fir {
  border: none;
  cursor: default
}

.special-fares .sav {
  margin-left: 5px;
  font-size: 12px;
  color: #27ae60;
  font-weight: 600;
}

.special-fares span {
  font-size: 10px;
  color: hsla(0, 0%, 6%, 0.54);
  font-weight: 600;
}

.offers {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.offers img {
  width: 376px;
  height: 125px;
  border-radius: 12px;
  object-fit: cover;
}

.cc {
  display: flex;
  justify-content: center;
  background-color: #f7f9fc;
  padding: 3% 0;
}

.cc .card {
  width: 40%;
  margin-right: 24px;
  background: white;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 3px 20px 25px -5px rgba(0, 0, 0, 0.1), 3px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.cc .card .rows {
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
  margin-bottom: 14px;
  text-align: center;
}

.cc .card .rows img {
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.cc .card .rows p {
  font-size: 14px;
  font-weight: 500;
}

.cc .card .foot {
  width: 100%;
}

.pay, .paytmmoney,.paybuss {
  width: 83%;
  display: flex;
  justify-content: space-between;
  padding: 50px 80px;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 3px 20px 25px -5px rgba(0, 0, 0, 0.1), 3px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.paytmmoney {
  background: url('https://assetscdn1.paytm.com/images/catalog/view/1617695245399.png') no-repeat center;
}

.pay .left, .paytmmoney .left, .paybuss .left {
  width: 50%;
}

.pay .left .logo, .paytmmoney .left img, .paybuss .left img {
  height: 38px;
  margin-bottom: 18px;
}

.pay .left h1, .paytmmoney .left .para, .paybuss .left .para {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pay .left .subtext, .paytmmoney .left .para1, .paybuss .left .para1 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 32px;
}

.pay .store-links img {
  height: 40px;
  margin-right: 16px;
  cursor: pointer;
}

.pay .right img, .paytmmoney .right img, .paybuss .right img {
  width: 475px;
  height: 440px;
  border-radius: 20px;
  object-fit: fill;
}

.paytmmoney .left .btn, .paybuss .left .btn {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 10px;
  background: #002970;
  padding: 8px 20px;
  border-radius: 35px;
  color: #fff;
  border: none;
  cursor: pointer;
}

.twentyXseven {
  width: 83%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  padding: 12px 20px;
  background: #1e2b5b;
  color: white;
  border-radius: 12px;
}

.twentyXseven .one {
  display: flex;
  align-items: center;
}

.twentyXseven .one p {
  margin-right: 15px;
  font-weight: 600;
}

.twentyXseven img {
  width: 46px;
  height: 46px;
  margin-right: 20px;
}

.twentyXseven .btn {
  display: flex;
  padding: 8px 19px;
  border-radius: 35px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #1e2b5b;
  cursor: pointer;
}

.onedes {
  width: 83%;
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
}

.onedes .left, .onedes .right {
  width: 49%;
  padding: 50px 50px 20px;
  border-radius: 20px;
  box-shadow: 3px 20px 25px -5px rgba(0, 0, 0, 0.1), 3px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.onedes .left {
  background: url('https://assetscdn1.paytm.com/images/catalog/view_item/1725638720587.png') no-repeat 50%;
  background-size: cover;
}

.onedes .left img, .onedes .right img {
  width: 140px;
}

.onedes .left .para, .onedes .right .para {
  padding: 10px 0;
  font-size: 40px;
  font-weight: 700;
}

.onedes .left .para1, .onedes .right .para1 {
  padding: 10px 0;
  font-size: 17px;
  font-weight: 500;
}

.onedes .left .bank {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.onedes .left .bank .btn, .onedes .right button {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid #002970;
  color: #002970;
  padding: 6px 12px;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 10px;
}

.onedes .left .bottom img, .onedes .right .bottom1 img {
  width: 425px;
  height: 335px;
}

.foo{
  margin-top: 20px;
  position: relative;
  bottom: 0px;
  left: 0px;
  width: 100%;
}

.foo .c1{
  height: 14px;
  background: #00baf2;
}
.foo .c2{
  height: 14px;
  background: #002970;
}

/* section-8 footer */

.sec8{
    background-color: #f7f9fc;
    padding: 1%; 
}

.space{
    margin-right: 10%;
}