/* css files */
@import url("font.css");

/*************** Global CSS *****************/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body a {
  text-decoration: none;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --nav-color: #1A1A1A;
  --primary: #1D1C46;
  --secondary: #88704A;
  --light-bg: #e3e9fb;
  --heading-font: "Nunito Sans", sans-serif;
  --para-font: "Nunito Sans", sans-serif;
  --form-font: "Nunito Sans", sans-serif;
  --exo-font: "Exo", sans-serif;
  --color: #1B1D21;
  --gray-text: #6D6D6D;
  --border-color: #D4D4D4;
  --light-blue-bg: #F2F3F8;
  --border-radius-5: 5px;
  --animationStartsAfter: 10vh;
  --animationDistance: 150px;
}

body {
  background: var(--blue-gradient);
}

body section:first-child {
  margin-top: 136px;
}

h1,
h2,
.title-h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3em;
  font-weight: 600;
  text-transform: capitalize;
  font-family: var(--heading-font);
  color: var(--color);
}

h1,
h2 {
  margin-bottom: 1rem;
}

h3,
h4,
h5,
h6 {
  margin-bottom: 0.65rem;
}

p {
  line-height: 1.6em;
}

h1 {
  font-size: 3.1rem;
}

h2,
.title-h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.2rem;
}

p,
li,
a {
  font-family: var(--para-font);
  font-size: 1rem;
}

p {
  color: var(--color);
}

.light-gray-p {
  color: var(--gray-text)
}

.container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}

.wt-50-center {
  width: 50%;
  margin: 0 auto;
}

.dark-bg-text {
  background-color: var(--primary);
  padding: 5px 20px;
  border-radius: 5px;
  color: var(--white);
  margin-bottom: 10px;
  width: max-content;
  font-size: 14px;
}

.uni-padding {
  padding: 100px 0;
}

.mt-20 {
  margin-top: 20px;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.card-sec-padding {
  padding: 60px 0;
}

.wt-70-center {
  width: 70%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-2 {
  padding-top: 2rem !important;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.diff-span {
  color: var(--primary);
}

.white-text {
  color: var(--white);
}

.font-1 {
  font-size: 1rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-6 {
  padding-bottom: 60px;
}

.img-div img {
  width: 100%;
}

.light-bg {
  background-color: var(--light-bg);
}

.col-count-2 {
  column-count: 2;
}

.break-heading {
  max-width: 45%;
  margin-right: auto;
}

.text-uppercase {
  text-transform: uppercase;
}

/* btn global */
.btn,
.btn-secondary {
  background-color: var(--primary);
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.5s ease;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  color: var(--white);
  font-family: var(--para-font);
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background-color: var(--secondary);

}

.btn svg {
  vertical-align: -3px;
}

.btn svg path {
  transition: all 0.5s ease;
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-green:hover svg path {
  transition: all 0.5s ease;
}

.btn-green:hover svg path {
  fill: var(--green);
}

.list {
  margin-inline-start: 20px;

}

.list li {
  color: var(--color);
  margin-bottom: 10px;
}

.alpha-list {
  list-style-type: lower-alpha;
}

.arrow-list {
  list-style: none;
  margin-inline-start: 20px;
}

.bold-text {
  font-weight: 700;
}

.normal-text {
  font-weight: 400;
}

.mt-0 {
  margin-top: 0 !important;
}

.brown-text {
  color: var(--secondary);
}

.banner {
  padding-top: 120px;
}

/* header start */
.header-row {
  position: fixed;
  z-index: 3;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
}

nav {
  z-index: 99;
  width: 100%;
  background: var(--white);
  padding: 2px 0;
}

nav .wrapper {
  position: relative;
  /* height: 70px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

header .logo img {
  width: 100%;
  max-width: 120px;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--nav-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links ul.submenu li a {
  color: var(--nav-color);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--secondary);
}

.nav-links ul.submenu li a:hover {
  color: var(--secondary);
}

.nav-links>li {
  padding: 9px 25px;
}

.nav-links li a .fa-solid,
.fas {
  font-size: 12px;
}

.nav-links li:hover .fa-solid {
  transform: rotate(180deg);
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu-help,
.nav-links .drop-menu-dev {
  position: absolute;
  background: var(--white);
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu-help,
.nav-links li:hover .drop-menu-dev {
  transition: all 0.3s ease;
  top: 65px;
  opacity: 1;
  visibility: visible;
}

.drop-menu-help li a,
.drop-menu-dev li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.drop-menu-help li:hover a,
.drop-menu-dev li:hover a {
  background-color: var(--green);
}

.mega-box {
  position: absolute;
  right: 0;
  width: 50%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .icon-btn {
  color: var(--primary);
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .icon-btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

.wrapper .icon-btn.close-btn {
  color: var(--white);
}

nav input {
  display: none;
}

.top-header {
  background-color: var(--primary);
}

.top-bar.flex {
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
}

.top-bar a,
.top-bar p {
  color: var(--white);
  text-decoration: none;
  padding: 0 5px;
  font-size: 14px;
  font-weight: 300;
}

.top-bar .top-center {
  align-items: center;
}

.top-bar a .fa {
  font-size: 20px;
}

.top-center.flex svg {
  vertical-align: -3px;
}

.top-bar a:hover,
.top-bar a.active {
  opacity: 0.9;
}

/* header end */
/* --------------- Owl Carousal End banner slider--------------- */
.main-slider .owl-carousel .owl-item img {
  display: block;
  width: 100% !important;
  height: 600px;
  /* min-height: 500px; */
  object-fit: cover;
  /* margin-left: -1px; */
}

.main-slider .slide-content {
  position: absolute;
  top: 45%;
  left: 40%;
  color: white;
  z-index: 5;
  padding: 0 20px;
  width: 60%;
  transform: translate(-50%, -50%);
}

.main-slider .slide-content .border-text.white-text {
  border: 1px solid var(--white);
  padding: 4px;
  font-size: 1.3rem;
  color: var(--white);
  border-radius: 4px;
  width: max-content;
  font-family: var(--exo-font);
  margin-bottom: 10px;
}

.main-slider .slide-content .white-text.small {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.banner-slider .owl-theme .owl-dots .owl-dot span {
  width: 60px;
  height: 5px;
  margin: 5px 7px;
  background: var(--black);
}

.main-slider .slide-content h2 {
  color: var(--white);
  font-size: 3rem;
}

.banner-slider {
  background-color: var(--primary);
}

.owl-theme.main-slider .owl-nav {
  margin-top: 10px;
  display: flex;
  z-index: 999;
  position: absolute;
  top: 45%;
  color: var(--white);
  width: 100%;
  justify-content: space-between;
}

#banner-slider .owl-nav .owl-prev,
#banner-slider .owl-nav .owl-next {
  background-color: transparent;
  border: 1px solid var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  color: var(--white);
  width: 40px;
  height: 40px;
}

#banner-slider .owl-carousel .owl-next {
  right: -30px;
}

#banner-slider .owl-carousel .owl-prev {
  left: -30px;
}

#banner-slider .owl-dots {
  position: absolute;
  margin-top: -40px;
  right: 10%;
}

#banner-slider .owl-theme .owl-dots .owl-dot.active span {
  width: 12px;
  height: 12px;
  background-color: var(--white);
}

#banner-slider .owl-theme .owl-dots .owl-dot span {
  background-color: rgb(255, 255, 255, 0.6);
}

/* --------------- Owl Carousal End --------------- */
.empowering-row.flex>div,
.strategies-row.flex>div {
  flex-basis: 50%;
}

.empowering-row.flex,
.strategies-row.flex {
  align-items: center;
}

.empowering-row.flex .img-div {
  padding-right: 10%;
}

#empowering-about {
  background-image: url("/assets/images/Section-bg.png");
  background-position: center;
  background-size: cover;
}

.service-fig-box.flex {
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
}

.service-fig-card.flex {
  background-color: #FCF2FC;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 10px;
}

.service-fig-card.flex.blue {
  background: #F1F9FA;
}

.service-fig-card.flex.purplle {
  background: #F5F2FC;
}

.service-fig-card.flex h3 {
  font-weight: 700;
}

#service-cards {
  background-image: url("/assets/images/service-cards-bg.png");
  background-size: cover;
  background-position: center;
}
#blog-banner {
  background-image: url("/wp-content/uploads/2024/09/blog-banner.png");
}

.serivce-cards-row.flex {
  flex-wrap: wrap;
  justify-items: center;
  gap: 1.5rem;
}

.serivce-cards-row.flex>div,
.blog-cards-box.flex>div {
  max-width: 32%;
}

.service-cards-col img {
  width: 70px;
}

.service-cards-col a {
  font-weight: 700;
  color: var(--primary);
}

.service-cards-col {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
}

.serivce-cards-row.flex .service-cards-col {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  gap: 1rem;
}

.serivce-cards-row.flex .service-cards-col h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.serivce-cards-row.flex .service-cards-col a {
  align-self: flex-end;
  margin-top: auto;
  margin-right: auto;
}

.serivce-cards-row.flex .service-cards-col:last-child {
  justify-content: center;
  align-items: center;
  gap: 0;
  border: none;
  background-color: transparent;
}

.serivce-cards-row.flex .service-cards-col:last-child a {
  align-self: center;
  margin-top: 20px;
  background-color: var(--secondary);
  color: var(--white);
}

.heading-div.text-center .dark-bg-text {
  margin-left: auto;
  margin-right: auto;
}

#strategies-cta {
  background-color: var(--light-blue-bg);
}

.icon-box.flex,
.icon-div.flex,
.strategies-row.flex {
  align-items: center;
  gap: 1.2rem;
}

/* client slider */
/* slider */

.main-client-slider .item {
  background-color: var(--light-blue);
  padding: 1.2rem;
  min-height: 200px;
  border-radius: 10px;
}

.main-client-slider .item .slide-content {
  padding: 2rem 1rem;
  border-radius: 10px;
  background-color: var(--light-blue-bg);
  min-height: 200px;
}

.main-client-slider .item .slide-content h4 {
  margin-bottom: 0;
}

.main-client-slider .item .slide-content>img {
  max-width: 60px;
  object-fit: cover;
  margin-top: -60px;
  margin-left: 20px;
}

/* customers-testimonials nav */
.owl-carousel .owl-nav [class*='owl-'] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-prev {
  left: -60px;
  background-color: var(--primary);
}

.owl-carousel .owl-nav.disabled {
  display: flex !important;
}

.owl-carousel .owl-next {
  right: -60px;
}

#customers-testimonials .owl-nav .owl-prev:hover,
#customers-testimonials .owl-nav .owl-next:hover {
  background-color: var(--secondary);
}

#customers-testimonials .owl-nav .owl-prev,
#customers-testimonials .owl-nav .owl-next {
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 50%;
  font-size: 20px;
  text-align: center;
}

.client-slider-wrapper {
  max-width: 90%;
}

.trusted-clients-wrapper .heading-div {
  width: 70%;
  margin: 0 auto;
  border-top: 2px solid var(--primary);
}

.trusted-clients-wrapper .heading-div h4 {
  padding: 5px 30px;
  background-color: var(--white);
  width: max-content;
  margin: 0 auto;
  margin-top: -20px;
}

.logo-box.flex {
  justify-content: center;
  align-items: flex-start;
  margin-top: 4rem;
  gap: 2rem;
}

.logo-box.flex img {
  max-width: 180px;
  object-fit: contain;
}

.dark-cta {
  background-image: url("https://www.cloudeagle.co.uk/wp-content/uploads/2024/10/dark-cta-bg.png");
  background-position: 30% 100%;
  background-size: cover;
}

.dark-cta-row.flex {
  align-items: center;
  justify-content: space-between;
}

.dark-cta-row.flex>div {
  min-width: 30%;
}

.dark-cta-row.flex>div:last-child {
  text-align: center;
}

.dark-cta-row.flex .dark-cta-col.content-col p {
  margin-bottom: 10px;
}

.blog-cards-box.flex {
  gap: 2rem;
}

.blog-card-col {
  position: relative;
}

.blog-card-col .date-box {
  width: max-content;
  border-radius: 5px;
  background: var(--light-blue-bg);
  padding: 5px 15px;
  margin-left: auto;
  z-index: 1;
  margin-bottom: -68px;
  position: relative;
}

.blog-card-col .img-div,
.blog-card-col .img-div img {
  border-radius: 5px;

}

.blog-card-col .date-box p.date {
  font-weight: 700;
  font-size: 1.3rem;
}

.blog-card-col .content-blog-box {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 15px;
  max-width: 90%;
  margin: 0 auto;
  margin-top: -30px;
  z-index: 1;
  position: relative;
  min-height: 200px;
}

#blog-cards {
  background-color: #F6F7F9;
}

.content-blog-box .top-box.flex {
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}
.content-blog-box{display: flex; flex-direction: column;}
.content-blog-box .btn {
  background-color: transparent;
  color: var(--primary);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0;
  align-items: flex-end;
  margin-top: auto;
}
.icon-div.flex p{font-size: 1rem;}
.logo-box.flex{flex-wrap: wrap;}
.logo-box.flex>img{max-width: 30%;}


/* footer */
.footer {
  background-color: var(--primary);
  background-image: url("/assets/images/footer-bg.png");
  background-position: center;
  background-size: contain; /* Dark blue background */
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-about,
.footer-services,
.footer-newsletter,
.footer-about-us,
.footer-contact,
.footer-social {
  width: 30%;
  margin-bottom: 20px;
}
.footer-newsletter{min-width: 45%;}
.footer-newsletter .inner-div{gap: 1.2rem;}
.footer-about img {
  width: 100%;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-button {
  background-color: #e8775a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.contact-button:hover {
  background-color: #d96548;
}
.footer-bottom.flex.container{justify-content: space-between; align-items: center; padding-bottom: 10px;}
.footer-services ul,
.footer-about-us ul {
  list-style: none;
  padding: 0;
}

.footer-services li,
.footer-about-us li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-services h3,
.footer-newsletter h3,
.footer-about-us h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
}
.footer a{color: var(--white); font-weight: 300;}
.footer-newsletter form {
  display: flex;
  align-items: center;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  flex: 1;
  border: none;
  border-radius: 5px 0 0 5px;
  min-width: 100px;
}



.footer-contact p,
.footer-social p {
  font-size: 14px;
  margin: 10px 0;
  color: var(--white);
}

.footer-social .social-icons a {
  margin-right: 10px;
}

.footer-social .social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  margin-top: 20px;
}

.footer-bottom-links a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-bottom p {
  font-size: 14px;
  margin: 10px 0 0 0;
}

/* Parent container for service cards */
.service-cards-row {
    display: flex;         /* Use flexbox */
    flex-wrap: wrap;       /* Allow items to wrap to new rows */
    margin: 10px;         /* Optional: To handle spacing/margins between items */
}

/* Flex items (service cards) */
.service-cards-col {
    flex: 1 1 30%;         /* Grow to fill space, basis of 30% for three items per row */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    padding: 10px;        /* Add some padding between items */
    /* Add additional styles as needed */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .service-cards-col {
        flex: 1 1 100%;
    }
}

