*{
    padding: 0;
    margin: 0;
}
/* logo */
a.navbar-brand {
  width: 57px;
}

/* menu bar */
li.nav-item {
  padding: 0px 12px;
}
ul.navbar-nav.ms-auto.mb-2.mb-lg-0 {
  margin-right: 74px;
}

ul.navbar-nav.mx-auto.mb-2.mb-lg-0 {
    font-size: 20px;
    font-weight: 500;
}
.security-text{
    word-wrap: break-word;
}
.management-text{
    align-items: center;
}
/* .comp1-para{
    border: 1px solid black;
} */
/* .comp1-img{
    height: 288px;
    overflow: hidden;
    object-fit: cover;
    object-position: bottom;
}
.comp1-para{

} */

/* about us section css */

.comp1-para{
    background-color: rgb(200, 160, 15);
    color: aliceblue;
    padding: 10px;
}
.card{
      margin: 1% 0%;
        height: 100%;
  }
  
  .card-body{
    margin: 0% 0% 0% 3%;
    padding: 6% 0%;
  }
  .bg-color-footer{
    background-color: rgb(13, 16, 48);
  }

  /* testimonial start */

  /*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* 
      Change favorite color
      Default: hsl(255, 90%, 60%)
      Orange: hsl(14, 90%, 60%) - Blue: hsl(210, 90%, 50%)
      Pink: hsl(356, 100%, 65%) - Green: hsl(162, 90%, 40%)

      For more colors visit: https://colors.dopely.top/color-pedia
      -> Choose any color 
      -> Click on tab (Color Conversion)
      -> Copy the color mode (HSL)
  */
  --hue: 255;
  --first-color: hsl(var(--hue), 90%, 60%);
  --first-color-alt: hsl(var(--hue), 82%, 56%);
  --first-color-light: hsl(var(--hue), 40%, 80%);
  --title-color: hsl(var(--hue), 24%, 16%);
  --text-color: hsl(var(--hue), 8%, 45%);
  --text-color-light: hsl(var(--hue), 8%, 60%);
  --white-color: hsl(0, 0%, 100%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --shadow-color: hsla(var(--hue), 90%, 30%, 0.1);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1.125rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
textarea,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color 0.4s;
}

input,
button,
textarea {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
.navbar-brand img{
  max-width: 160%!important;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}
.section__title {
  font-size: var(--h1-font-size);
  text-align: center;
  margin-bottom: 2rem;
}

.perfil {
  width: 250px;
  height: 250px;
  background-color: var(--body-color);
  border: 8px solid var(--first-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color 0.4s;
}

.perfil__content {
  width: 180px;
  height: 180px;
  border: 10px solid var(--first-color);
  border-radius: 50%;
  overflow: hidden;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(
    180deg,
    hsl(var(--hue), 90%, 80%),
    hsl(var(--hue), 90%, 30%)
  );
}

.perfil__img {
  width: 160px;
}

.main {
  overflow: hidden;
}

/*=============== TESTIMONIAL ===============*/
.testimonial__container {
  position: relative;
}

.testimonial__swiper {
  padding-bottom: 2rem;
}

.testimonial__card {
  background-color: var(--container-color);
  padding: 2rem 1.25rem 2.5rem 1.25rem;
  border-inline: 8px solid var(--first-color);
  box-shadow: 0 12px 24px var(--shadow-color);
  border-radius: 0.5rem;
  text-align: center;
  transition: background-color 0.4s;
}

.testimonial__border {
  width: 100px;
  height: 100px;
  border: 6px solid var(--first-color);
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.testimonial__img {
  filter: grayscale(1);
  transition: filter 0.4s;
}

.testimonial__name {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
}

.testimonial__card:hover .testimonial__img {
  filter: none;
}


/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-inline: 1rem;
  }
  .services__modal {
    padding-inline: 0.5rem;
  }
  .about__skills-content {
    grid-template-columns: repeat(4, max-content);
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .services__container {
    grid-template-columns: repeat(2, 320px);
  }
  .testimonial__container {
    max-width: 700px;
    margin-inline: auto;
  }
  .testimonial__description {
    width: 470px;
    margin-inline: auto;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
  .section {
    padding-block: 7rem 2rem;
  }
  .section__title {
    margin-bottom: 3.5rem;
  } 
  .testimonial__card {
    padding-block: 3rem 3.5rem;
  }
  .testimonial__border {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
  }
}


.text-color-img{
    color: black;
    font-size: 10px;
}
.navbar-light .navbar-nav .nav-link {
  color: #fff;
}
nav.navbar.navbar-expand-lg.navbar-light {
  background: #060835;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(239, 112, 8, 0.7);
}
.common-heading {
  font-size: 2.2rem;
  color: #060835;
  font-family: 'poppinsextrabold';
}

.inner-banner {
  position: relative;
}

.inner-banner-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
}

.contact-list i {
  color: rgb(13, 16, 48);
}
.about-page {
  padding: 60px 0;
}

.form-control {
  border-radius: 0;
  font-size: 0.8rem;
}

.common-btn {
  background: rgb(13, 16, 48);
  color: #fff;
  font-family: 'poppinsmedium';
  text-align: center;
  padding: 7px 20px;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

