*{
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1bb293, #ff703c);
    color: white;
    padding: 100px 0;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* Navbar Styling */
.navbar {
    background-color: #1bb293;
}

.navbar-brand {
    color: white;
    font-weight: bold;
}

.navbar-brand img{
    width: 90px !important;
}
.navbar-nav .nav-link {
    color: white;
}

.cta-buttons .btn {
    margin: 10px;
    padding: 10px 20px;
    background: #ff703c;
    border: none;
    color: #fff;
}

.btn{
    background: #ff703c;
}

.cta-buttons .btn:hover{
    background-color: #1bb293;
}

/* Features Section */
.features-section {
    background: #f5f5f5;
    padding: 50px 0;
    animation: slideInUp 1s ease-in-out;
}

.footer {
    background-color: #1bb293;
    color: #e0f7fa;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #b2dfdb;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}
/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.app-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.app-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

a{
    text-decoration: none;
}

.section1{
    padding: 40px 0px 60px;
    color: #fff;
    background-color: #1bb293;
}

.icon-container {
    text-align: center;
}
.icon-container img {
    max-width: 100px;
    margin-bottom: 10px;
}
.title {
    font-size: 1.2rem;
    font-weight: 500;
}
.header-text {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.highlight {
    color: #00aaff;
}

.section2 img{
    width:80%;
}

.google-flex {
    display: flex;
    gap: 20px;
}

.google-flex img{
    width: 100%;
    border-radius: 8px;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.revolutionize-icon img{
    width: 100px;
    margin-bottom: 10px;
}

.twitter img{
    width: 25px;
}
@media screen and (max-width:767px) {
    .hero-section{
        padding: 40px 0px;
    }
}