
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e43c5c;
  text-decoration: none;
}

a:hover {
  color: #ea6981;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e43c5c;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e9607a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.9);
  padding: 12px 0;
}

/*--------------------------------------------------------------
                Banner Card 
-----------------------------------------------*/

.banner {
  width: 100%;
  height: 400px; /* adjust banner height */
  background: url('banner-image.jpg') no-repeat center center/cover;
  position: fixed;                  /* fixed on screen */
  top: 0px;                        /* distance from top */
  right: 0px;                      /* distance from right */
  display: flex;
  justify-content: flex-end; /* push card to right */
  align-items: center;        /* center vertically */
  padding-right: 157px;        /* spacing from right */
}

/* Banner Card Positioned Right Side, Auto Size */
.banner-card {
  display: inline-block;             /* card width adjusts to content */
  max-width: 30%;                    /* prevent overflow on small screens */
  padding: 0px 0px;                /* internal spacing */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-align: center;
  transition: 0.3s ease;
  }

/* Glossy Hover Effect */
.banner-card:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 50px rgba(228, 60, 92, 0.35);
  transform: translateY(-5px);
}

/* Company Name Text */
.banner-card h1 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #e43c5c;
  margin: 0 0 5px 0;
  }


/*--------------------------------------------------------------
# /* ------------------------------------------
   Navigation Menu (Improved & Modernized)
-------------------------------------------*/

/* ------------------------------------------
   Beautiful Rounded Modern Navbar
-------------------------------------------*/

.navbar {
  padding: 5px 25px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  margin: -15px auto;
  width: fit-content;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 99;
  transition: 0.3s ease;
}

/* Desktop Nav */
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}

.navbar a {
  font-family: "Poppins", sans-serif;
  color: #2a1b55;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 30px;
  transition: 0.3s ease;
  letter-spacing: 0.3px;
  background: transparent;
}

/* Hover effect */
.navbar a:hover,
.navbar li:hover > a,
.navbar .active {
  background: #e43c5c;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(228, 60, 92, 0.4);
}

/* Remove underline bar */
.navbar > ul > li > a::before {
  display: none;
}

/* Dropdown Menu (Rounded & Soft) */
.navbar .dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 12px 0;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.navbar .dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  top: 110%;
}

.navbar .dropdown ul a {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
}

.navbar .dropdown ul a:hover {
  background: #f0f0f5;
  color: #e43c5c;
}

/* ------------------------------------------
   Mobile Navigation (Beautiful Rounded)
-------------------------------------------*/
.mobile-nav-toggle {
  display: none;
  color: #110630;
  font-size: 32px;
  cursor: pointer;
  transition: 0.3s ease;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar {
    width: 90%;
    border-radius: 25px;
  }

  .navbar ul {
    display: none;
  }
}

/* Mobile menu overlay */
.navbar-mobile {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  backdrop-filter: blur(3px);
  transition: 0.3s ease;
}

/* Mobile menu panel */
.navbar-mobile ul {
  background: #ffffff;
  margin: 80px 20px;
  padding: 20px;
  border-radius: 20px;
  display: block;
}

.navbar-mobile a {
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 16px;
  color: #2a1b55;
}

.navbar-mobile a:hover {
  background: #f4f4fa;
  color: #e43c5c;
}

/* Mobile dropdown */
.navbar-mobile .dropdown ul {
  padding-left: 10px;
  margin-top: 10px;
  border-left: 2px solid #eee;
  border-radius: 10px;
}

.navbar-mobile .dropdown .dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  top: 94%;
  right: 540px;
  transform: translateY(-50%);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0;
}


#hero h3 {
  background: rgba(255, 255, 255, 1);
  color:  #e43c5c;
  font-size: 20px;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 50px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #e43c5c;
  border: 2px solid #e43c5c;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h3 {
    font-size: 22px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1;
  margin: 0;
  background: #fdeff2;
  color: #e43c5c;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #e43c5c;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #e43c5c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #e43c5c;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #e43c5c;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #e43c5c;
}

.about .content .btn-learn-more:hover {
  background: #e43c5c;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 30px;
}

.services .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  text-align: center;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #fdeff2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #e43c5c;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #e43c5c;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
 .client-logo {
  width: 70px;      /* Logo width */
  height: 70px;     /* Logo height */
  object-fit: contain;
  border-radius: 5px;  /* Remove if you want sharp corners */
  transition: transform 0.3s ease;
}
.client-box:hover .client-logo {
  transform: scale(1.12);
}  



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #e43c5c;
  float: left;
  width: 44px;
  height: 44px;
  background: #fdeff2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #493c3e;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #816a6e;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #e43c5c;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #e43c5c;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #e43c5c;
  border: 0;
  padding: 10px 28px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #d01d3f;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}







/* Koha Section Styling */
.koha {
  padding: 60px 20px;
  background: #f9f8f8;
  font-family: "Poppins", sans-serif;
}

.koha .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.koha .section-title h3 {
  font-size: 28px;
  font-weight: 700;
  color: #e43c5c;
}

.koha .section-title span {
  color: #2a1b55;
}

.koha .section-title p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* Koha Banner */
.koha-banner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.koha-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
}

.koha-banner:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* Koha Info Card */
.koha-info-card {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.koha-info-card:hover {
  box-shadow: 0 12px 40px rgba(228, 60, 92, 0.25);
  transform: translateY(-5px);
}

.koha-info-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #e43c5c;
  margin-bottom: 10px;
}

.koha-info-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Button */
.btn-koha {
  display: inline-block;
  background: #e43c5c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-koha:hover {
  background: #2a1b55;
  box-shadow: 0 6px 20px rgba(228, 60, 92, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .koha-info-card, .koha-banner {
    width: 95%;
    margin: 0 auto 20px auto;
  }
}


/* ------------------------------------------
   Modern Attractive Footer (Centered)
-------------------------------------------*/

#footer {
  background: #f6f4f4;
  color: #444444;
  font-size: 15px;
  text-align: center;             /* Center text */
  padding: 5px 10px;             /* Better spacing */
  border-radius: 25px 25px 0 0;   /* Rounded top corners */
  box-shadow: 0px -4px 25px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

/* Footer hover glow */
#footer:hover {
  background: #ffffff;
  box-shadow: 0px -6px 30px rgba(228, 60, 92, 0.25);
}

/* Credit text */
#footer .credits {
  padding-top: 2px;
  font-size: 13px;
  color: #666666;
  opacity: 0.9;
}
