        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        /* Header Styles */
        .header {
            background: #e31837;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background:  #e31837;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
               }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            height: 80px;
            gap: 1rem;
        }

        /* Logo */
        .logo-section {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            position: relative;
        }

       .logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Tablet */
@media (max-width: 768px) {
    .logo-img {
        max-height: 50px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-img {
        max-height: 40px;
    }
}
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Right Side - Phone + Book Now */
        .header-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Phone Number */
        .phone-section {
            display: flex;
            align-items: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .phone-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .phone-icon i {
            font-size: 1.2rem;
            color: #ffd93d;
        }

        .phone-info h4 {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2px;
            opacity: 0.9;
        }

        .phone-number {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffd93d;
        }

        .phone-section:hover {
            transform: translateY(-2px);
        }

        .phone-section:hover .phone-icon {
            background: rgba(255, 217, 61, 0.3);
            transform: scale(1.05);
        }

        /* Book Now Button */
        .book-now-btn {
            background: #ffdd00;
            color: #e31837;
            border: none;
            padding: 12px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            position: relative;
            overflow: hidden;
        }

        .book-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .book-now-btn:hover::before {
            left: 100%;
        }

        .book-now-btn:hover {
            background: #ffffff;
    color: #e31837;
        }

        .book-now-btn i {
            font-size: 1.1rem;
        }

        /* Menu */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
            display: block;
        }

        /* Active Link Styles */
        .nav-link.active {
            color: #ffd93d;
        }

        .nav-link.active::before {
            width: 100% !important;
            background: linear-gradient(90deg, #ffd93d, #ff6b6b) !important;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffd93d, #ff6b6b);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::before {
            width: 100%;
        }

        .nav-link:hover {
            color: #ffd93d;
            transform: translateY(-2px);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background:#e31837;
            backdrop-filter: blur(20px);
            flex-direction: column;
            padding: 2rem;
            gap: 1rem;
            animation: slideDown 0.3s ease;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu .book-now-btn {
            margin-top: 1rem;
            justify-content: center;
            width: 100%;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-content {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                padding: 0.8rem 0;
                height: 70px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .header-right {
                gap: 1rem;
            }

            .logo {
                font-size: 1.6rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.4rem;
            }

            .phone-section {
                display: none;
            }

            .header-right {
                justify-content: flex-end;
            }
        }

        /* Demo Styles */
        .demo-content {
            height: 200vh;
            padding-top: 100px;
            background: linear-gradient(45deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
        }
/* Back to Top Button Styles */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #e31837;
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    display: none; /* Hidden by default */
    cursor: pointer;
    z-index: 1000; /* Ensures it's on top of other elements */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background-color: #ffdd00;
    color: #e31837;
}

/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}
        .demo-section {
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .demo-section h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }


/*SLIDE*/

 .hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
  }
  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
  }
  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
 
    max-width: 600px;
  }
  .hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 2.5rem);
    margin: 0 0 1rem; color: #ffffff;
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.45);
  }
  .hero-text p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 0 0 1.5rem;
  }
  .btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffdd00;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.3rem;
    transition: 0.3s;
  }
  .btn:hover {
    background: #ffd633;
    transform: scale(1.05);
  }
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 16px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
  }
  .prev { left: 20px; }
  .next { right: 20px; }
  .dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
  }
  .dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }
  .dot.active {
    background: #ffdd00;
    transform: scale(1.4);
  }
  @media (max-width: 768px) {
    .hero-slider { height: 60vh; min-height: 400px; }
    .hero-text { left: 5%; }
  }
  
  

  
/*Reservation */

.reservation-box {
  display: flex;
  gap: 6px;
}

.reservation-box input,
.reservation-box select {
  padding: 7px 18px;
  border: 1px solid #ccc;
  border-radius:8px;
  font-size: 15px; margin:5px 10px;
}

/* Book Button */
.book-btn {
  background: #ffd100;
  color: #000;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: 600;
  border-radius:8px;
  transition: 0.3s;
}

.book-btn:hover {
  background: #e31837;
  color: #fff;
  transform: scale(1.05);
}

/* Phone */
.phone {
  text-decoration: none;
  color: #002b5c; font-size:16px;
}

/* Navigation */
.main-nav {
  background: #002b5c;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.main-nav ul li a {
  display: block;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s; text-transform:uppercase;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background:#FFDD00; color:#000;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #002b5c;
}

@media (max-width: 992px) {

  .reservation-box {
    
  }

  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    display: none;
  }

  .site-header:hover .main-nav ul {
    display: flex;
  }

}  
/*MENITIES*/


.amenities{background: linear-gradient(135deg, #ff3b3b, #e31837, #b60000);

    color: white;
    padding:20px 0 60px 0;
    overflow-x: hidden;}

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; 	
	
  }

  .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05));
    opacity: 0;
    transition: 0.5s;
  }

  .card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #FFDD00;
    box-shadow: 0 255px 220px rgb(255 235 0 / 40%);
  }

  .card:hover::before { opacity: 1; }

  .icon {
    font-size:3rem;
    margin-bottom: 10px;
    transition: all 0.4s;
  }

  .card:hover .icon {
    transform: scale(1.2);
    text-shadow: 0 0 40px currentColor;
  }

  h4 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color:#30649f;
    -webkit-background-clip: text;
  }

  p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
  }

  /* Unique Neon Glow Colors */
  .c1 .icon { color: #ffdd00; }  /* Cyan */
  .c2 .icon { color: #ffdd00; }  /* Magenta */
  .c3 .icon { color: #ffdd00; }  /* Yellow */
  .c4 .icon { color: #ffdd00; }  /* Orange */
  .c5 .icon { color: #ffdd00; }  /* Lime */
  .c6 .icon { color: #ffdd00; }  /* Hot Pink */
  .c7 .icon { color: #ffdd00; }  /* Mint */
  .c8 .icon { color: #ffdd00; }  /* Bright Orange */
  .c9 .icon { color: #ffdd00; }  /* Purple */
  .c10 .icon { color: #ffdd00; } /* Neon Pink */

  @media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .icon { font-size: 3.2rem; }
    .card { padding: 35px 15px; }
  }
  
  

.attractions-section {
  padding: 60px 8%;
  background: #ffffff;
  text-align: center;
}

.attractions-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color:#e31837;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:25px;
}

.attraction-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.attraction-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.attraction-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  text-align: left;
  transition: 0.4s;
}

.overlay h3 {
  margin: 0;
  font-size: 20px;
}

.overlay p {
  font-size: 14px;
  margin-top: 5px;
}

/* Hover Effect */
.attraction-card:hover .overlay {
  background: rgba(0,0,0,0.85);
}













.main {width:1200px; margin:0 auto;}

.reservation{width:1000px; margin:0 auto; padding:30px 0;}
#resbg{background:#e31837 ; margin:0 auto;}
.footer{width:100%;background:#e31837; color:#fff;}
.hotel {float:right;margin-top:15px; width:270px;}
.col-one {float:left; text-align:left;width:400px;color:#fff;margin:15px 0;}
.col-one ul{float:left; width:200px;}
.col-one li{list-style: inside; line-height:28px; }
.col-one ul li a{ font-weight:normal; color:#fff; text-decoration:none;}

#content {margin:0 auto; }
#content p{font-size:17px;font-weight:normal;line-height:25px;padding:0 10px 0 10px; letter-spacing:0.5px;}
.heading {text-decoration:none; padding:25px 0 0 0px;font-weight:bold;font-size:30px;text-align:center;text-transform:uppercase;line-height:35px; letter-spacing:2px; font-family:Quando, Verdana, Geneva, sans-serif;}
.heading a {text-decoration:none;color:#e31837; font-weight:700;}
.heading p {padding:10px; font-size:14px;line-height:24px;text-transform:capitalize;}




.area{ width:100%; background:#e31837;}
.vid{width:650px; float:right;}
.vid img { width:100%;transition: 0.5s all ease-in-out;}
.vid:hover img {transform: scale(1.2);}
.left{float:left; width:405px; padding:20px 30px;}
.left p{font-size:16px; padding:30px 0; line-height:35px;}
.head1 {text-decoration:none;font-size:25px;text-transform: capitalize;line-height:35px; letter-spacing:1px; color:#fff;font-family:'Roboto Slab', serif;}
.head {text-decoration:none; font-weight:bold;font-size:28px;text-transform: capitalize;line-height:35px; letter-spacing:1px; color:#fff;font-family:'Quando',serif;}
.map1{ font-size:18px;padding:10px; width:82%;margin-right:13px; color:#26337B;float:left; font-family:'Roboto Slab',verdana,arial; border-radius:5px; background:#FFDD00;}
.map{ background:#fff; border-radius:5px;padding:15px; width:75%;margin-right:15px; font-family:'Roboto Slab',verdana,arial;  }

.topbk{ width:85%; margin:0 auto;padding:30px;}
.acc {color:#e31837; font-size:25px; margin:0 auto; line-height:45px; letter-spacing:0.5px; text-align:center;}
.acc a{text-decoration:none;color:#e31837; font-weight:normal;}

#bottom{width:100%; color:#fff;}
.col-two {float:left;margin-left:30px;width:448px;margin-top:15px;}
.col-two ul li a{ font-weight:normal; color:#e31837; text-decoration:none;}
.col-three {float:left;width:80%;padding-left:50px;}
.add {float:left;margin-top:15px;width:480px;}
.line {padding:5px; text-align:center; color:#000;}
.owner {margin:0 auto; text-align:center; font-size:17px; background:#444444; color:#fff;}
.owner p { padding:5px 0; color:#fff;}
.title{font-size:24px; padding:20px 0 5px 0; text-transform:uppercase; margin-bottom:15px; color:#FFDD00; letter-spacing:1px;}
.title a{text-decoration:none; color:#FFDD00;}

a.cgsl:link, a.cgsl:visited {color:#fff;font-weight:normal;text-decoration:none;}
a.cgsl:hover {color:#fff;}

a.cgs2:link, a.cgs2:visited {color:#e31837;font-weight:normal;text-decoration:none;}
a.cgs2:hover {color:#e31837;}

a.cgs:link, a.cgs:visited {color:#000;font-weight:normal;text-decoration:none;}
a.cgs:hover {color:#000;}

a.cgs3:link, a.cgs3:visited {color:#ffdd00;font-weight:normal;text-decoration:none;}
a.cgs3:hover {color:#ffdd00;}

.map1{ font-size:12px;padding:10px; width:50%;margin-right:15px; background:#fff;border: 1px double #929292;color:#444;float:left; border-radius:15px;}
.more {display:none;}
a.showLink, a.hideLink { text-decoration: none;color: #000;padding:8px 10px;background:#FEF200;}
a.showLink:hover, a.hideLink:hover { background:#e31837; color: #ffffff;}




/* ===== WHY CHOOSE TIP-TOP MOTEL SECTION ===== */

.why-tiptop-section {
  width: 100%;
  padding: 70px 20px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 45%, #fff4f3 100%);
  overflow: hidden;
}

.why-tiptop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-tiptop-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px auto;
}

.why-tiptop-heading span {
  display: inline-block;
  background: #ffdd00;
  color: #e31837;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.why-tiptop-heading h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #e31837;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-tiptop-heading p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.why-tiptop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-tiptop-card {
  background: #ffffff;
  padding: 35px 22px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(227, 24, 55, 0.18);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

.why-tiptop-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 221, 0, 0.25);
  border-radius: 50%;
  top: -45px;
  right: -45px;
  transition: all 0.45s ease;
}

.why-tiptop-card:hover {
  transform: translateY(-12px);
  border-color: #ffdd00;
  box-shadow: 0 25px 45px rgba(171, 38, 33, 0.22);
}

.why-tiptop-card:hover::before {
  width: 160px;
  height: 160px;
  background: rgba(171, 38, 33, 0.12);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: #e31837;
  color: #ffdd00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.why-tiptop-card:hover .why-icon {
  background: #ffdd00;
  color: #e31837;
  transform: rotateY(360deg);
}

.why-tiptop-card h3 {
  color: #e31837;
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.why-tiptop-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-tiptop-card a {
  color: #e31837;
  font-weight: 700;
  text-decoration: none;
}

.why-tiptop-cta {
  margin-top: 45px;
  background:linear-gradient(135deg, #ff3b3b, #e31837, #b60000);
  border-radius: 24px;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 18px 40px rgba(171, 38, 33, 0.28);
}

.why-tiptop-cta h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 8px;
}

.why-tiptop-cta p {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

.why-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffdd00;
  color: #e31837;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.35s ease;
}

.why-book-btn:hover {
  background: #ffffff;
  color: #e31837;
  transform: translateY(-4px);
}

/* Scroll Animation */
.reveal-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-tiptop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-tiptop-heading h2 {
    font-size: 31px;
  }
}

@media (max-width: 768px) {
  .why-tiptop-section {
    padding: 55px 15px;
  }

  .why-tiptop-grid {
    grid-template-columns: 1fr;
  }

  .why-tiptop-heading h2 {
    font-size: 27px;
  }

  .why-tiptop-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .why-book-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .why-tiptop-heading h2 {
    font-size: 24px;
  }

  .why-tiptop-card {
    padding: 30px 18px;
  }

  .why-tiptop-cta h3 {
    font-size: 22px;
  }
}