/* Start Global Rules */
* {
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f0f5ff !important; /* Same as FAQ section */
  color: #333;
 
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header{
    position: fixed;
    background-color: #e3f2fd;
    
 
 

 /* Background color */
    width: 100vw; /* Full width */
    height: 60px; /* Adjust height dynamically */
    padding: 2px 0; /* Add space around text */
    text-align: left;
    position: fixed; /* Keep it at the top */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it stays on top */
    padding-bottom: 2px;
   
}


.landing-page header .nam {
    background-color: #e3f2fd; /* light blue */
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8; /* Google-like blue */
    
    letter-spacing: 1px;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  
  margin-left: auto;
  margin-right: auto;
  top: 100px;
  
}
.container .pad{ 
  padding-top: 2px;
  margin-bottom: 10px;
  margin-top:-180px;
}

.navbar {
  position: fixed;
  top: 200px;
  width: 100%;
  overflow: hidden;
  
 
}


}


.space {
    display: flex;         /* Enables Flexbox */
    flex-direction: column; /* Stacks elements vertically */
    align-items: center;   /* Centers items */
    margin: 10px;             /* Reduces space between button and images */
}






/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */

/* Start Landing Page */
.landing-page header {
  min-height: 80px;
  display: flex;
}
@media (max-width: 767px) {
  .landing-page header {
    min-height: auto;
    display: initial;
  }
}
.landing-page header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .landing-page header .container {
    flex-direction: column;
    justify-content: center;
  }
}
.landing-page header .logo {
  color: #5d5d5d;
  font-style: italic;
  text-transform: uppercase;
  font-size: 20px;
  
  width: 100vw;
  padding: 10px 0;
  height: auto;
  top: 0;
  z-index: 1000;
  
}
@media (max-width: 767px) {
  .landing-page header .logo {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.landing-page header .links {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .landing-page header .links {
    text-align: center;
    gap: 10px;
  }
}
.landing-page header .links li {
  margin-left: 30px;
  color: #5d5d5d;
  cursor: pointer;
  transition: .3s;
}
@media (max-width: 767px) {
  .landing-page header .links li {
    margin-left: auto;
  }
}
.landing-page header .links li:last-child {
  border-radius: 20px;
  padding: 10px 20px;
  color: #FFF;
  background-color: #007bff;
}
.landing-page header .links li:not(:last-child):hover {
  color: #007bff;
}
.landing-page .content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 140px;
  min-height: calc(100vh - 80px);
}
@media (max-width: 767px) {
  .landing-page .content .container {
    gap: 0;
    min-height: calc(100vh - 101px);
    justify-content: center;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .landing-page .content .info {
    text-align: left;
    margin-bottom: 15px 
  }
}
.landing-page .content .info h1 {
  color: #000000;
  font-size: 44px;
}
.landing-page .content .info p {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  color: #5d5d5d;
}
.landing-page .content .info .blue{color:#00aeef}
.landing-page .content .info button {
  border: 0;
  border-radius: 20px;
  padding: 12px 30px;
  margin-top: 30px;
  cursor: pointer;
  color: #FFF;
  background-color: #007BFF;
}
.landing-page .content .info button:hover {
  background-color: #0086bb;
  }
.landing-page .content .image img {
  max-width: 100%;
}

/* End Landing Page */

@media (min-width: 1024px) { 
.landing-page .content .container {
  padding-top: 80px; /* Adjust this value based on your header height */
}

.landing-page header {
  height: 80px; /* Ensure header has a fixed height */
}
.landing-page header .nam {
   box-shadow: none;
   
}


