
/* Navigation */
#menu {
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

#menu.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Brand */
#menu .navbar-brand {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

/* Navbar Items */
#menu .navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

#menu .navbar-nav .nav-item {
  position: relative;
}

#menu .navbar-nav .nav-link {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease-in-out;
}

#menu .navbar-nav .nav-link:hover {
  color: #007bff;
}

#menu .navbar-nav .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

#menu .navbar-nav .nav-link:hover::after,
#menu .navbar-nav .nav-item.active .nav-link::after {
  width: 100%;
}

/* Navbar Toggler Button */
.navbar-toggler {
  border: none;
  background: none;
  outline: none;
  padding: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Toggler Icon */
.navbar-toggler-icon {
  width: 30px;
  height: 30px;
}

/* Completely separate Dashboard button styling */
.dashboard-lnk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid blue; /* Thin blue border */
  color: blue !important; /* Text stays blue */
  background-color: transparent !important; /* No background */
  padding: 6px 16px;
  border-radius: 50px; /* Rounded corners */
  font-weight: 600; /* Slightly bold */
  text-decoration: none !important; /* No underline */
  transition: transform 0.2s ease-in-out;
}

/* Hover Effect (Slight Growth) */
.dashboard-lnk:hover {
  transform: scale(1.05);
  text-decoration: none !important;
}

/* Arrow Styling */
.dashboard-lnk .arrow {
  margin-left: 6px; /* Space between text and arrow */
  font-weight: bold;
}



/* Responsive Navbar */
@media (max-width: 991px) {
  #menu {
    padding: 10px 15px;
  }

  .navbar-collapse {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
  }

  #menu .navbar-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  #menu .navbar-nav .nav-item {
    width: 100%;
  }

  #menu .navbar-nav .nav-link {
    display: block;
    padding: 12px;
    width: 100%;
  }

  #menu .navbar-nav .nav-link:hover {
    background: rgba(0, 123, 255, 0.1);
  }
}

/* Header Section */
header .intro-text {
  padding: 2rem 0;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align text to the left */
  width: 100%;
  min-height: 100vh; /* Full viewport height */
  background: url("../img/intro-bg.webp") center/cover no-repeat;
  background-color: #e5e5e5;
  position: relative;
  padding-left: 10%; /* Adjusts text position within left half */
}

.intro .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
}

.intro-text {
  position: relative;
  z-index: 1;
  flex-basis: 50%;
  max-width: 100%;
}

.intro h1 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 97px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.intro h1 span {
  font-weight: 800;
  color: #5ca9fb;
}

.intro p {
  color: #fff;
  font-size: 23px;
  font-weight: 300;
  line-height: 28px;
  max-width: 85%;
}

.btn-primary {
  background-color: yellow !important;
  color: black !important;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .intro {
    padding-left: 5%;
  }
  
  .intro-text {
    flex-basis: 60%;
    max-width: 60%;
  }

  .intro h1 {
    font-size: 48px;
  }

  .intro p {
    font-size: 16px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .intro {
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }

  .intro-text {
    flex-basis: 90%;
    max-width: 90%;
  }

  .intro h1 {
    font-size: 40px;
  }

  .intro p {
    font-size: 16px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .intro {
    min-height: 70vh;
    background: #0074cc !important; /* Remove background image only on mobile */
    padding: 5%; /* Reduce padding */
    text-align: center;
    justify-content: center; /* Center content in mobile view */
  }

  .intro-text {
    max-width: 100%;
  }

  .intro h1 {
    font-size: 7vw;
    color: #f5f5f5;
  }

  .intro p {
    font-size: 5vw;
    max-width: 90%;
    color: #f5f5f5;
  }

  .btn-primary {
    padding: 10px 16px;
    font-size: 14px;
  }
}


/* Features Section */
#features {
  background: #f6f6f6;
}
#features i.fa {
  font-size: 38px;
  margin-bottom: 20px;
  transition: all 0.5s;
  color: #fff;
  width: 100px;
  height: 100px;
  padding: 30px 0;
  border-radius: 50%;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
/* About Section */
#about {
  padding: 100px 0;
}
#about h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
#about h2 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#about h2::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
  height: 4px;
  width: 60px;
  bottom: 0;
  left: 0;
}
#about .list-style {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#about .list-style > div {
  flex: 1 1 48%; /* Each column takes almost half width */
}
#about .about-text ul {
  padding: 0;
  list-style: none;
}
#about .about-text li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
#about .about-text li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #5ca9fb;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 2px;
}
#about img {
  width: 100%;
  max-width: 520px;
  margin-top: 10px;
  background: #fff;
  border-right: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
}
#about p {
  line-height: 24px;
  margin: 30px 0;
  text-align: left; /* Center aligns the paragraph */
}

@media (max-width: 768px) {
  #about .list-style {
    flex-direction: column;
  }
  #about .list-style > div {
    flex: 1 1 100%;
  }
  #about img {
    width: 100%;
  }
}


/* Services Section */
#services {
  padding: 100px 0;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  color: #fff;
}
#services .service-desc {
  margin: 10px 10px 20px;
}
#services h2 {
  color: #fff;
}
#services .section-title h2::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  height: 4px;
  width: 60px;
  bottom: 0;
  margin-left: -30px;
  left: 50%;
}
#services i.fa {
  font-size: 42px;
  width: 120px;
  height: 120px;
  padding: 40px 0;
  background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
#services h3 {
  font-weight: 500;
  padding: 5px 0;
  color: #fff;
}
#services p {
  color: rgba(255, 255, 255, 0.75);
}
#services .service-desc {
  margin-bottom: 40px;
}

/* OurApp Section */
#our-app {
  background-color: #f5f5f5; /* Very light grey */
  padding: 50px 0; /* Adds spacing above and below */
}

/* Center download section */
.app-download-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Ensure responsiveness */
  margin-top: 30px;
}

/* Individual app box */
.app-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
}

/* Image container */
.app-image-box {
  width: 100%;
  height: 500px; /* Set a fixed height to maintain consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

/* App images */
.app-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Download buttons container */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Download button styling */
.btn-ourApp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between icon and text */
  margin-top: 10px;
  background-color: black;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
}

/* Hover effect */
.btn-ourApp:hover {
  background-color: #333;
  transform: scale(1.05); /* Slight hover effect */
}

/* Icon inside button */
.btn-ourApp i {
  font-size: 20px; /* Ensure consistent icon size */
  width: auto;
  display: flex;
  align-items: center;
}


#partners {
  background-color: #f8f9fa; /* Light background */
}

.section-title h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.1rem;
  color: #6c757d; /* Gray text */
}

.card {
  width: 100%;
  max-width: 300px; /* Fixed size */
  border-radius: 30px; /* Curved corners */
  overflow: hidden;
  margin: auto;
}

.card img {
  height: 150px; /* Fixed image height */
  object-fit: contain; /* Ensure logos fit properly */
  padding: 12px;
  background: #ffffff;
}

.card-body {
  text-align: center;
  background: #fff;
  padding: 15px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .row.g-4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .col-md-4 {
    flex: 0 0 calc(33.333% - 20px); /* 3-column layout */
    max-width: calc(33.333% - 20px);
  }
}

/* Stack on smaller screens */
@media (max-width: 767px) {
  .col-sm-6 {
    flex: 0 0 50%; /* 2-column layout */
    max-width: 50%;
  }

  @media (max-width: 575px) {
    .col-12 {
      flex: 0 0 100%; /* 1-column full width */
      max-width: 100%;
    }
  }
}
/* Global Styles */
body {
  background-color: #f5f5dc; /* White-cream background */
  color: #333; /* Dark grey/black text */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Contact Section */
#contact {
  padding: 50px 20px;
  text-align: center;
}

/* Address Box (No Frame, Unified Background) */
.contact-info {
  padding: 20px;
  text-align: center;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222; /* Dark Grey */
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
  color: #444; /* Medium Grey */
}

.contact-info i {
  font-size: 20px;
  margin-right: 8px;
  color: #666; /* Light Grey */
}

/* Social Media Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  color: #444; /* Dark Grey */
  background: #ddd; /* Light Grey Button */
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: #bbb; /* Slightly Darker Grey */
}

/* Footer (Same Container, Grey Background) */
#footer {
  background: #ccc; /* Soft Grey */
  padding: 15px 0;
  text-align: center;
  margin-top: 40px;
}

#footer p {
  margin: 0;
  font-size: 14px;
  color: #222;
}

#footer a {
  color: #333;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info {
    padding: 15px;
  }

  .contact-info h3 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .social-links a {
    padding: 8px 15px;
    font-size: 16px;
  }

  #footer p {
    font-size: 12px;
  }
  
}
