@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

.light {
  --mainColor: #2344AC;
  --hoverColor: #082278;
  --backgroundColor: #f1f8fc;
  --darkOne: #312f3a;
  --darkTwo: #45424b;
  --lightOne: #919191;
  --lightTwo: #aaa;
  --secondcolor: #2B3278;

  --primary: #2344AC;
  --primary-dark: #1a3285;
  --secondary: #f1f8fc;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.dark {
  --mainColor: #64bcf4;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

/* Fixed Buttons*/
.fixed-contact-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.fixed-contact-btns a {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 50%;
  background-color: #25D366;
  /* WhatsApp green color */
  color: #fff;
  text-align: center;
  transition: background-color 0.3s ease;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.8);

  }

  100% {
    transform: scale(1);
  }
}

.fixed-contact-btns a:hover {
  background-color: #08843c;
  /* WhatsApp hover color */
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
}

.fixed-contact-btns .email-btn {
  background-color: #3498db;
  /* Email blue color */
}

.fixed-contact-btns .email-btn:hover {
  background-color: #086bac;
  /* Email hover color */
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.2);
}

.fixed-contact-btns i {
  font-size: 20px;
}

/* first section */

.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  width: 120px;
  margin-right: 0.6rem;
  margin-top: -0.6rem;
}

.logo h3 {
  color: var(--darkTwo);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.links .nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--mainColor);
  margin-left: 4.5rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ccc;
  width: 170px;
}

.dropdown-menu li {
  margin-bottom: 10px;
  list-style: none;
}

.dropdown-menu li a {
  color: #333;
  text-decoration: none;
  margin-left: 0;
  padding: 5px 10px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.dropdown p {
  color: var(--mainColor);
}

.dropdown-menu li a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

.dropdown-menu.show {
  display: block;
}

.sub-dropdown {
  display: none;
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.main-category{
    cursor: pointer;
}

.sub-dropdown a{
    font-size: 0.8rem;
}

.sub-dropdown.show {
  display: block;
}



.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
  background-color: var(--backgroundColor);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
  background-color: var(--backgroundColor);
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  font-size: 1.4rem;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 1.5;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  animation: float 2s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* .person {
  width: 123%;
  transform: translate(15%, 25px);
} */

.toggle-btn {
  display: inline-block;
  border: none;
  /*background: var(--darkTwo);*/
  /*color: var(--backgroundColor);*/
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }

  100% {
    clip-path: circle(150% at 0 0);
  }
}

/*********************** Login ********************/

.btn {
  padding: 12px 24px;
  background: linear-gradient(45deg, var(--primary), #4560cf);
  border: none;
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(35, 68, 172, 0.3);
  display: inline-block;
}

.btn:hover {
  background: linear-gradient(45deg, #4560cf, var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(35, 68, 172, 0.4);
}

.btn:active {
  transform: translateY(1px);
}

.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.form-container {
  width: 80%;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--white);
  position: relative;
}

.right-container {
  width: 100%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.form input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  font-family: "Poppins", sans-serif;
}

.form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 68, 172, 0.15);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-options input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}

.form-options a {
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.form-options a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.signup-link {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
}

.signup-link a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.signup-link a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.alert {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  text-align: center;
}


/*********************** How It Works********************/

.works-section {
  width: 90%;
  margin: 0 auto;
  padding: 50px;
}

.line {
  width: 80%;
  margin: 0 auto;
  height: 1px;
  border-bottom: 4px dashed #95ceef;
}

.heading {
  font-size: 2.5rem;
  text-align: center;
}

.work-text {
  text-align: center;
}

.works-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.work-container-2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 25px;
}

.work-container-2 .work-card {
  width: 450px;
}

.work-card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.work-img {
  width: 150px;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heading-work {
  font-weight: 600;
}

.heading-work span {
  background: #ccc;
  padding: 5px 8px;
  border-radius: 50%;
  line-height: 50px;
}

.service-providers {
  font-size: 2rem;
  margin-top: 20px;
  text-align: center;
}

/************** Why Choose Section ************************/

.why-section {
  background-color: #f1f8fc;
  padding: 50px;

}

.why-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #0104be, #0000);
  -webkit-background-clip: text;
  color: transparent;
}

.why-choose {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.why-choose-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.why-choose-card {
  background-color: #fff;
  padding: 20px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  line-height: 35px;
  transition: all 0.3s ease-in-out;
}

.why-choose-card p {
  color: #333;
}

.why-choose-card:hover {
  transform: scale(1.05);
}






.cta-section {
  padding: 48px;
  margin: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #e0e7ff 0%, #f1f8fc 100%);
  border-radius: 20px;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2344AC;
}

.cta-buttons {
  display: flex;
  justify-content: space-around;
  gap: 5px;
}

.cta-section .btn {
  background-color: #2344AC;
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  width: 400px;
}



/********************** Responsive Code****************/

@media screen and (max-width: 1200px) {
  .logo img {
    width: 120px;
  }

  .showcase-area .container {
    margin-top: 50px;
  }

  .big-title {
    font-size: 1rem;
  }

  .text {
    font-size: 1rem;
    margin: 1.2rem 0 2.5rem;
    line-height: 1.5;
  }

  .links a {
    margin-left: 2.5rem;
  }

  .works-section {
    width: 100%;
    padding: 20px;
  }

  .why-choose {
    width: 95%;
  }

  .why-choose-card p {
    line-height: 25px;
  }
}

@media screen and (max-width: 870px) {
  .hamburger-menu {
    display: flex;
  }

  .dropdown p {
    color: var(--backgroundColor);
    padding: 2rem 0;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }

  .big-title {
    font-size: 1.1rem;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }

  .work-text {
    font-size: 0.9rem;
  }

  .works-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .work-container-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .work-container-2 .work-card {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .container {
    padding: 0 1.5rem;
  }
  
 

  .big-title {
    font-size: 0.9rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }

  .heading {
    font-size: 1.8rem;
  }

  .service-providers {
    font-size: 1.6rem;
  }

  .line {
    width: 100%;
  }

  .why-choose {
    width: 95%;
    flex-direction: column;
  }

  .why-section h2 {
    font-size: 1.8rem;
  }

  .why-section {
    padding: 20px;
  }

  .showcase-area {
    padding: 0;
  }

  .logo img {
    width: 100px;
  }

  .form-container {
    width: 100%;
  }
  .cta-buttons {
  flex-direction: column;
 }
 .cta-section .btn{
  width:300px;
 }
}