@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    color: #000;
    text-decoration: none;
}

::selection {
    background-color: var(--Soft-Red);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--Soft-Blue);
}

section {
    padding: 2rem 9%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.heading {
    text-align: center;
    font-size: 2rem;
    color: var(--Very-Dark-Blue);
    margin-top: 10rem;
    margin-bottom: 5rem;
}

.heading h1 {
    padding-bottom: 2rem;
}

.heading p {
    max-width: 100rem;
    margin: auto;
    color: var(--Grayish-Blue);
    font-size: 1.7rem;
}

.all-btn {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    background-color: var(--Soft-Blue);
    border-radius: .5rem;
    color: #fff;
}

.all-btn:hover {
    background-color: transparent;
    color: var(--Soft-Blue);
    border: 2px solid var(--Soft-Blue);
}

:root {
    --Soft-Blue: hsl(231, 69%, 60%);
    --Soft-Red: hsl(0, 94%, 66%);
    --Grayish-Blue: hsl(229, 8%, 60%);
    --Very-Dark-Blue: hsl(229, 31%, 21%);
    --box-shadow: .5rem .5rem 0 hsl(231, 69%, 60%);
    --text-shadow: .4rem .4rem 0 rgba(0, 0, 0, .2);
    --border: .2rem solid var(--green);
}

.header {
    padding: 3rem 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0%;
    left: 0;
    z-index: 10000;
    background-color: #fff;
    box-shadow: 0rem 0.5rem 1.5rem rgba(0, 0, 0, .1);
}

.active {
    color: var(--Soft-Red);
}
.header .logo {
    cursor: pointer;
}

.header .navbar a {
    margin-left: 2rem;
    font-size: 1.7rem;
    text-transform: uppercase;
}

.header .navbar a:hover {
    color: var(--Soft-Red);
}

.header .navbar .btn {
    padding: .6rem 3rem;
    background-color: var(--Soft-Red);
    color: #fff;
    border-radius: .5rem;
}

.header .navbar .btn:hover {
    color: var(--Soft-Red);
    background-color: transparent;
    border: 2px solid var(--Soft-Red);
}

#menu-btn {
    padding: 1rem 1rem;
    background-color: #eee;
    font-size: 3rem;
    /* color: var(--Soft-Blue); */
    border-radius: .5rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: initial;
    }

    .header .navbar {
        position: absolute;
        top: 115%;
        right: 2rem;
        box-shadow: var(--box-shadow);
        width: 33rem;
        border-radius: .5rem;
        border: 2px solid var(--Soft-Blue);
        background-color: #fff;
        transform: scale(0);
        transform-origin: top right;
    }

    .header .navbar.active {
        transform: scale(1);
    }

    .header .navbar a {
        margin: 2.5rem;
        text-align: center;
        display: block;
        font-size: 2rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.home .content h1 {
    animation: fadeInOut 5s ease-in-out;
}

.features .heading h1{
    animation: fadeInOut 5s ease-in-out;
}

.features .heading p{
    animation: fadeInOut 1s ease-in-out;
}
.home {
    padding-top: 15rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home .image {
    flex: 1 1 45rem;
}

.home .image img {
    width: 100%;
    margin-top: 5rem;
}

.home .content {
    flex: 1 1 45rem;
}

.home .content h1 {
    font-size: 4.5rem;
    padding-block-end: 1rem 0;
    color: var(--Very-Dark-Blue);
    transform: scale(0.9);
}


.home .content p {
    font-size: 1.7rem;
    padding: 1rem 0;
    max-width: 40rem;
    color: var(--Grayish-Blue);
    padding-bottom: 4rem;
}

.home .content .home-btn {
    padding: 1.3rem 2rem;
    background-color: #fff;
    color: #000;
    font-size: 1.4rem;
    box-shadow: .5rem .5rem hsl(231, 69%, 60%);
    border: 2px solid var(--Soft-Blue);
    border-radius: .5rem;
}

.home .content .home-btn:hover {
    background-color: var(--Soft-Blue);
    box-shadow: none;
    color: #fff;
}

.features .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    margin: 3rem 0;
}

.features .row .image {
    flex: 1 1 45rem;
}

.features .row .image img {
    width: 100%;
}

.features .row .content {
    flex: 1 1 45rem;
}

.features .row .content h1 {
    font-size: 4rem;
    padding: 1rem 0;
    color: var(--Very-Dark-Blue);
}

.features .row .content p {
    font-size: 1.7rem;
    padding: 1rem 0;
    color: var(--Grayish-Blue);
    padding-bottom: 4rem;
}

/* Updated CSS for the services section */
.services {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 2rem; /* Adjust spacing between the text and image */
    margin-top: 0px;
    padding: 2rem 9%;
}

.services .content {
    flex: 1 1 45%; /* Adjusts the width of the content */
}

.services .serviceimage {
    flex: 1 1 45%; 

/* Adjusts the width of the image */
}

.services .serviceimage img {
    width: 100%; /* Ensures the image is responsive */
    max-width: 45rem;
     /* Limits the maximum width */
}

/* Add this to your CSS file */
.serviceimage img {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.serviceimage img.loaded {
    opacity: 1;
    transform: scale(1);
}


@media (max-width: 768px) {
    .services {
        flex-direction: column; /* Stacks text and image vertically on smaller screens */
        align-items: flex-start; /* Aligns items to the start of the container */
    }
}

.download .box-container {
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.download .box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    text-align: center;
    padding: 2.5rem;

}

/* .download .box:hover {
    border: 2px solid var(--Soft-Blue);
    box-shadow: none;
} */

.download .box h3 {
    font-size: 2rem;
    padding: 1rem 0;
    color: var(--Very-Dark-Blue);
}
.download .box img {
    width: 100%;
}

.download .box p {
    font-size: 1.7rem;
    padding-bottom: 2.5rem;
    color: var(--Grayish-Blue);
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box a {
    font-size: 1.7rem;
    color: var(--gray);
    padding: 1rem 0;
    display: block;
}

.footer .box-container .box a:hover {
    color: var(--Soft-Red);
}

.footer .credit {
    text-align: center;
    font-size: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    color: var(--gray);
    border-top: var(--border);
}

.card-container-wrapper {
    display: flex;
    justify-content: space-evenly; /* or use justify-content: center; */
    flex-wrap: wrap; /* Optional, to allow wrapping */
    margin: 2rem;
}

.card-container {
    perspective: 500px;
    margin-right: 10px;
   
}

.card {
    width: 200px;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 0.5s;
    cursor: pointer;
   
}

.card:hover {
    transform: rotateY(180deg);
   
}

.card .front, .card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.front {
    background-size: contain;
    background-repeat: no-repeat;
    /* Adjust if necessary */
    background-position: center;
}
.card .back {
    transform: rotateY(180deg) ;
    background: #37a1edfa;
    color: #fff;
}

.card .card-link {
    display: block;
    text-decoration: none;
}



/* social icons  */

.socialIcon {
    width: 33px;
    height: 33px;
    align-items: center;
  }
  
  .social-icons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .social-icon {
    margin: 0 50px 0 50px;
    align-items: center;
  }
  
  .social-icon:hover {
    cursor: pointer;
    
  }
  .social-icon {
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    cursor: pointer;
    transform: scale(0.7); /* Zoom out effect */
}
  
  @media (max-width: 768px) {
    .text-blk.heading {
      font-size: 55px;
      line-height: 65px;
    }
  
    .text-blk.subHeading {
      font-size: 18px;
      line-height: 24px;
    }
  
    .socialIcon {
      width: 20px;
      height: 20px;
    }
  
    .text-blk.subHeading {
      line-height: 27px;
    }
  
    .text-blk.heading {
      font-size: 32px;
      line-height: 40px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 20px;
      margin-left: 0px;
    }
  
    .social-icon {
      margin: 0 25px 0 25px;
    }
  }
  
  @media (max-width: 500px) {
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 20px;
      padding-bottom: 10px;
      padding-left: 20px;
    }
  
    .text-blk.heading {
      font-size: 45px;
      line-height: 55px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 20px;
      margin-left: 0px;
    }
  
    .text-blk.subHeading {
      font-size: 14px;
      line-height: 22px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 30px;
      margin-left: 0px;
    }
  
    .social-icons-container {
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
  
    .text-blk.subHeading {
      font-size: 16px;
      line-height: 23px;
    }
  
    .text-blk.heading {
      font-size: 26px;
      line-height: 30px;
    }
  
    .social-icon {
      margin: 0 20px 0 20px;
    }
}

/* contact us form */

/* .container {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .container .content .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  
  .container .content .left-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
  }
  
  .container .content .left-side::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  
  .container .content .right-side {
    width: 75%;
    margin-left: 75px;
  }
  
  .container .content .right-side .details {
    margin: 20px 0;
    text-align: center;
  }
  
  .container .content .right-side .details i {
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
  }
  
  .container .content .right-side .details .topic {
    font-size: 18px;
    font-weight: 500;
  }
  
  .container .content .right-side .details .text-one,
  .container .content .right-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
  }
  
  @media (max-width: 950px) {
    .container {
      width: 90%;
      padding: 30px 40px 40px 35px;
    }
  
    .container .content .right-side {
      width: 75%;
      margin-left: 55px;
    }
  }
  
  @media (max-width: 820px) {
    .container {
      margin: 40px 0;
      height: 100%;
    }
  
    .container .content {
      flex-direction: column-reverse;
    }
  
    .container .content .left-side {
      width: 100%;
      flex-direction: row;
      margin-top: 40px;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .container .content .left-side::before {
      display: none;
    }
  
    .container .content .right-side {
      width: 100%;
      margin-left: 0;
    } */

  /* } */


  .container{
    width: 85%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .container .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .container .content .left-side{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
  }
  .content .left-side::before{
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
  }
  .content .left-side .details{
    margin: 14px;
    text-align: center;
  }
  .content .left-side .details i{
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
  }
  .content .left-side .details .topic{
    font-size: 18px;
    font-weight: 500;
  }
  .content .left-side .details .text-one,
  .content .left-side .details .text-two{
    font-size: 14px;
    color: #afafb6;
  }
  /* .container .content .right-side{
    width: 75%;
    margin-left: 75px;
    margin-top: 75px;
  }
  .content .right-side .topic-text{
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
  }
  .right-side .input-box{
    height: 50px;
    width: 100%;
    margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
  }
  .right-side .message-box{
    min-height: 110px;
  }
  .right-side .input-box textarea{
    padding-top: 6px;
  }
  .right-side .button{
    display: block;
    margin: 0 auto;
    
  }
  .right-side .button input[type="button"]{
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button input[type="button"]:hover{
    background: #5029bc;
  }
  @media (max-width: 950px) {
    .container{
      width: 90%;
      padding: 30px 40px 40px 35px ;
    }
    .container .content .right-side{
     width: 75%;
     margin-left: 55px;
  }
  } */
  @media (max-width: 820px) {
    .container{
      margin: 40px 0;
      height: 100%;
    }
    .container .content{
      flex-direction: column-reverse;
    }
   .container .content .left-side{
     width: 100%;
     flex-direction: row;
     margin-top: 40px;
     justify-content: center;
     flex-wrap: wrap;
   }
} 

.right-side {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

/* Form title styling */
.right-side .topic-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Paragraph styling */
.right-side p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Input fields styling */
.right-side form input[type="text"],
.right-side form input[type="email"],
.right-side form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Textarea styling */
.right-side form textarea {
    resize: none;
}

/* reCAPTCHA styling */
.right-side .g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/* Submit button styling */
.right-side form button {
    background-color: #3e2093;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.right-side form button:hover {
    background-color: #5029bc;
}

.thank-you-container {
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
}

.thank-you-container img {
  width: 300px;
  margin-bottom: 20px;
}

.thank-you-container h1 {
  font-size: 24px;
  margin: 0;
  color: #333;
}

.thank-you-container p {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #666;
}

.thank-you-container .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #f54ea2, #ff7676);
  text-decoration: none;
  transition: background 0.3s ease;
}

.thank-you-container .btn:hover {
  background: linear-gradient(45deg, #ff7676, #f54ea2);
}



.job-card {
  width: 750px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 180px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #f4f6f8;
  border-bottom: 1px solid #ddd;
}

.icon {
  width: 80px;
  height: 50px;
  margin-right: 15px;
}

.card-header h2 {
  font-size: 20px;
  margin: 0;
  color: #333;
}

.card-header p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 16px;
  color: #161515;
  line-height: 1.6;
}

.card-body ul {
  padding-left: 20px;
  margin: 10px 0;
  list-style: disc;
  color: #555;
}

.card-body ul li {
  margin-bottom: 8px;
  font-size: 13px
}

.card-body a {
  color: #007bff;
  text-decoration: none;
}

.card-body a:hover {
  text-decoration: underline;
}

.job-type {
  padding: 5px 10px; /* Adjust padding as needed */
}

/* Job card styling */
.job-card {
  width: 750px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  overflow: hidden;
  margin-top: 150px;
}

.card-header, .card-body {
  padding: 20px;
}

.job-type {
  font-size: 14px;
  color: #777;
  padding: 5px 10px; /* Custom padding for this paragraph */
}

.apply-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.apply-btn:hover {
  background-color: #0056b3;
}

/* Popup styling */
.popup {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto; 
  padding-top: 70px;/* Allow scrolling */
}

.popup-content {
  background-color: #fff;
  width: 400px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.popup-content h2 {
  margin: 0 0 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.send-btn {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.send-btn:hover {
  background-color: #218838;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

/* Style for the phone number input field */
.iti {
  width: 100%; /* Ensure the input field stretches across the available space */
}

.iti__selected-flag {
  padding: 10px;
  background-color: #f9f9f9; /* Background for the flag dropdown */
  border-right: 1px solid #ccc;
}

.iti__flag-container {
  margin-right: 5px; /* Space between flag and phone number */
}

input[type="tel"] {
  font-size: 16px; /* Match the font size */
  padding: 10px 10px 10px 50px; /* Add padding to align text correctly */
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box; /* Prevent content overflow */
}