/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.logo img {
  height: 50px;   /* adjust size as needed */
  width: auto;
}


.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* bold and strong */
  font-size: 2.5rem;
  line-height: 1.2;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.navbar nav a {
  margin-left: 50px;
  text-decoration: none;
  color: #222;  
  font-weight: 700;
  font-family: 'Montserrat', sans-serif; /* Apply Montserrat */
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.navbar .logo span {
  color: #f7b500;
}


/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 50px;
}
.hero .text {
  max-width: 50%;
}

.safe { color: #0033a0; font-weight: bold; }
.simple { color: #0033a0; font-weight: bold; }
.profit { color: #f7b500; font-weight: bold; }
.hero p {
  margin: 20px 0;
}
.playstore {
  margin-top: 15px;
  width: 180px;
}
.hero .image img {
  max-width: 350px;
   
    margin-right: 160px;
}


.hero p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* regular weight */
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000C7E; /* optional, makes it softer than pure black */
}
/* Follow Section */
.follow {
  background: #1e0b57;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 50px;
}
.follow .text {
  max-width: 50%;
    opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.follow.active .text {
  opacity: 1;
  transform: translateY(0);
}

.follow h2,
.follow p {
  font-family: 'Montserrat', sans-serif;
}

.follow h2 {
  font-weight: 700; /* bold for the title */
  font-size: 2rem;
  margin-bottom: 15px;
}

.follow p {
  font-weight: 400; /* regular for paragraph */
  font-size: 1rem;
  line-height: 1.6;
}


.follow button {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  background: white;
  color: #1e0b57;
  font-family: 'Montserrat', sans-serif; /* Montserrat text */
  font-weight: 600; /* semi-bold for emphasis */
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.follow button:hover {
  background: #f7b500;   /* yellow on hover */
  color: white;
}


html {
  scroll-behavior: smooth;
}


.follow .image img {
  max-width: 300px;
  margin-left:140px;
 
}

/* About Section */
.about {
  background: #f7b500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 50px;
  color: white;
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat */
  color: #fff; /* Default text color (adjust if needed) */
  padding: 60px 20px;
}
.about .text {
  max-width: 60%;
  
}
.about .download {
  text-align: center;
}
.about .download p {
  margin-bottom: 10px;
}
.about .playstore {
  width: 180px;
}

.about .text h2 {
  font-weight: 700; /* Bold */
  color:  #fff;      /* Black */
  font-size: 2rem;  /* Adjust size if needed */
  margin-bottom: 15px;
}



.about .text p {
  font-weight: 400;
  color: #fff ; /* Dark gray for readability */
  line-height: 1.6;
}


footer {
  display: flex;
  justify-content: space-between; /* Pushes links left, version right */
  align-items: center;            /* Aligns them vertically */
  padding: 15px 50px;
  background: #fff;
  border-top: 4px solid #f4b400;  /* Yellow top border */
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #000;
}

footer .links a {
  margin-right: 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}