  @import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  --heading-font: 'Roboto Condensed', sans-serif;
  --heading-font-weight: 700;
  --heading-color: #4F4F4F;

  --accent-color: #3498db;
  --linear-gradient: linear-gradient(90deg, #2980b9 0%, #3498db 100%);

  /* bootstrap */
  --bs-body-font-family: 'Roboto', sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6875rem;
  --bs-body-color: #555;
  --bs-body-color-rgb: 85, 85, 85;

  --bs-primary: #6A737D;
  --bs-secondary: #34495e;
  --bs-black: #000;
  --bs-light: #F4F4F4;
  --bs-dark: #2C3E50;
  --bs-gray: #B0B0B0;
  --bs-gray-dark: #393939;

  --bs-primary-rgb: 106, 115, 125;
  --bs-secondary-rgb: 52, 73, 94;
  --bs-black-rgb: 0, 0, 0;
  --bs-light-rgb: 244, 244, 244;
  --bs-dark-rgb: 44, 62, 80;

  --bs-link-color: #3498db;
  --bs-link-color-rgb: 52, 152, 219;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #2980b9;
  --bs-link-hover-color-rgb: 41, 128, 185;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

h6 {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.19rem;
}

.heading-color {
  color: var(--accent-color);
}

a {
  text-decoration: none;
  color: var(--bs-link-color);
}

a:hover {
  color: var(--bs-link-hover-color);
}



/* bootstrap button style  */

.btn {
  --bs-btn-padding-x: 1.88em;
  --bs-btn-padding-y: 0.75rem;
  --bs-btn-font-family: var(--heading-font);
  --bs-btn-font-size: 1.1875rem;
  --bs-btn-font-weight: 700;
  border-radius: 0;
  text-transform: uppercase;
}

.btn-primary {
  --bs-btn-color: var(--bs-light); /* Updated text color to bootstrap light color */
  --bs-btn-bg: var(--bs-primary); /* Updated background color to bootstrap primary color */
  --bs-btn-border-color: var(--bs-primary); /* Updated border color to bootstrap primary color */
  --bs-btn-hover-color: var(--bs-light); /* Updated hover text color to bootstrap light color */
  --bs-btn-hover-bg: var(--bs-primary); /* Updated hover background color to bootstrap primary color */
  --bs-btn-hover-border-color: var(--bs-primary); /* Updated hover border color to bootstrap primary color */
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb); /* Updated focus shadow color to bootstrap primary color */
  --bs-btn-active-color: var(--bs-light); /* Updated active text color to bootstrap light color */
  --bs-btn-active-bg: var(--bs-primary); /* Updated active background color to bootstrap primary color */
  --bs-btn-active-border-color: var(--bs-primary); /* Updated active border color to bootstrap primary color */
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-light); /* Updated disabled text color to bootstrap light color */
  --bs-btn-disabled-bg: var(--bs-primary); /* Updated disabled background color to bootstrap primary color */
  --bs-btn-disabled-border-color: var(--bs-primary); /* Updated disabled border color to bootstrap primary color */
}

.btn-primary {
  background-image: var(--linear-gradient); /* Updated background image to the linear gradient defined in the body section */
  background-size: 200% auto;
  border: none;
  transition: 0.7s all;
  -webkit-transition: 0.7s all;
}

.btn-primary:hover {
  background-position: right center;
}



/*---- navigation section style start ----*/

.navbar {
  font-family: var(--heading-font);
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: var(--bs-black);
  --bs-navbar-hover-color: var(--accent-color);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: var(--accent-color);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  border-radius: 5px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
}

nav.navbar {
  z-index: 999999;
}


/* dropdown style  */

/*.dropdown-menu {
  --bs-dropdown-border-radius: 0px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--bs-gray);
  color: var(--bs-black);
}

.dropdown-item {
  font-weight: 600;
  color: var(--bs-black);
}*/

@media only screen and (max-width: 1200px) {
  a.phone-no {
    display: none;
  }
}

@media only screen and (max-width: 1800px) {
  .pattern-overlay {
    display: none;
  }
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: var(--accent-color) !important;
}



/*---- hero section style start ----*/

.pattern-overlay.pattern-right {
  top: 30%;
  right: 0px;
}


.form-label {
  font-size: 0.875rem;
  color: var(--bs-black);
  text-transform: uppercase;
}

.form-control {
  /* border: none; */
  border-radius: 0;
}

/*---- partner section style start ----*/

img.logo-image {
  filter: saturate(0);
  opacity: 50%;
  transition: ease-in 0.2s;
}

img.logo-image:hover {
  filter: saturate(100%);
  opacity: 1;
}

.navbar-nav .nav-link:hover {
    color: #ffcc00;
    text-decoration: underline;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}



.hero {
  position: relative;
  background-image: url(images/bg.jpeg);
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}



/*---- testimonial section style start ----*/

section#testimonial {
  background: linear-gradient(90deg, #2980b9 0%, #2980b9 100%);
}

.testimonial-pattern-overlay.pattern-right {
  top: 35%;
  right: 0px;
}

.testimonial-pattern-overlay.pattern-left {
  top: 20%;
  left: 0px;
}

.testimonial-content {
  background: #F9E9E9;
}

iconify-icon.rate {
  color: #F2B821;
}

#testimonial img{
  width: 45px;
  border-radius: 50px;
  border: solid #fff;
}

/* swiper overide 
--------------------------------------------------------------*/

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, var(--bs-light));
}


/*---- services section style start ----*/

.services-components {
  border: 1px solid var(--accent-color);
  transition: all 0.5s ease-in;
}

iconify-icon.services-icon {
  font-size: 80px;
  color: var(--accent-color);
  transition: all 0.5s ease-in;
}

.services-heading {
  transition: all 0.5s ease-in;
}

.service-btn {
  transition: all 0.5s ease-in;

}

/* .services-components:hover {
  background: var(--accent-color);
  color: var(--bs-light);
}

.services-components:hover .services-heading,
.services-components:hover iconify-icon.services-icon {
  color: var(--bs-light);
}

.services-components:hover .service-btn {
  background: var(--bs-light);
  color: var(--bs-black);
  transition: all 0.5s ease-in;
} */


/*---- projects section style start ----*/

section#projects {
  background: var(--accent-color);
}

button.filter-button {
  font-family: var(--heading-font);
  border: 1px solid #FFF;
  background: transparent;
  color: var(--bs-light);
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.active {
  color: var(--bs-dark);
  background: var(--bs-light);
}

button.filter-button:hover {
  color: var(--bs-dark);
  background: var(--bs-light);
}


.item .description {
  width: 90%;
  height: 90%;
  position: absolute;
  bottom: 20px;
  left: 15px;
  z-index: 5;
  opacity: 0;
  background: rgba(255, 255, 255, 0.90);
  transition: all 0.5s ease-in;
}

.item:hover .description {
  opacity: 1;
}

#about img{
  border-radius: 30px;
}

#cta a{
  border-radius: 10px;
}

.navbar a{
  border-radius: 10px;
}

#contact button{
  border-radius: 10px;
}

.services-components {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
}

.services-components:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-icon {
    font-size: 2em;
    color: #3498db;
}

.services-heading {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.service-btn {
    background-color: #3498db;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.service-btn:hover {
    background-color: #007bb5;
}


@media only screen and (min-width:770px) and (max-width: 1400px) {
  .item .description {
    text-align: start;
  }

  .project-date,
  .project-heading {
    display: none;
  }
}

@media only screen and (min-width:770px) and (max-width: 1200px) {
  .item .description {
    left: -5px;
    background: none;
  }
}



/*---- process section style start ----*/

.process-components {
  border-bottom: 2px dotted var(--accent-color);
  /* border-top: 2px solid var(--accent-color); */
  transition: ease-in 0.3s;
}

img.arrow {
  opacity: 0;
}

iconify-icon.process-icon {
  color: var(--accent-color);
  font-size: 110px;
}

.bg-dark img{
  border-radius: 10px;
}


/*---- faq section style start ----*/


/*---- cta section style start ----*/

section#cta {
  background: var(--linear-gradient);
}

.cta-button {
  background: var(--bs-light);
  color: var(--bs-black);
}

.cta-button:hover,
.cta-button:active,
.cta-button:focus {
  background: var(--bs-light);
  color: var(--bs-black);
}

@media only screen and (max-width: 770px) {
  .cta-pattern-overlay {
    display: none;
  }
}

.social-icons li a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.social-icons li a:hover {
  background-color: #333;
}

.social-icons li a[data-hover-color="#1877f2"]:hover {
  background-color: #1877f2; /* Facebook - Sky Blue */
}

.social-icons li a[data-hover-color="#c32aa3"]:hover {
  background-color: #c32aa3; /* Instagram - Dark Pink */
}

.social-icons li a[data-hover-color="#1da1f2"]:hover {
  background-color: #1da1f2; /* Twitter - Sky Blue */
}

.social-icons li a[data-hover-color="#ff0000"]:hover {
  background-color: #ff0000; /* YouTube - Red */
}


/*---- footer section style start ----*/

.love a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.love a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 25px;
  color: #262626;
  text-align: center;
  margin: 0 10px;
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0,0,0,0.3);
  background: linear-gradient(0deg, #fff, #ddd);
  transition: 0.5s;
}

.love a[data-hover-color="#1877f2"]:hover {
  color: #1877f2;
}

.love a[data-hover-color="#c32aa3"]:hover {
  color: #c32aa3;
}

.love a[data-hover-color="#333333"]:hover {
  color: #333333;
}

.love a[data-hover-color="#ff0000"]:hover {
  color: #ff0000;
}

.love a:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ccc, #fff);
}

#TDL img{
  border-radius: 10px;
}

#TDL a{
  border-radius: 5px;
  transition: 2s;
}

#TDL strong{
  font-size: 40px;
}


/*--------------------------------------------------------------
About page style
--------------------------------------------------------------*/

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
}


/*--------------------------------------------------------------
  Blog page style
  --------------------------------------------------------------*/

.active>.page-link,
.page-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}


.form-control:focus {
  border-color: var(--bs-black);
  box-shadow: none;
}


/*--------------------------------------------------------------
  Price page style
  --------------------------------------------------------------*/


.plan-post {
  border: 1px solid var(--accent-color);
}

span.price-tick {
  color: var(--accent-color);
}

.price-option {
  height: 320px;
}

.recommend-price {
  background: #D06051;
}

/*--------------------------------------------------------------
  Project page style
  --------------------------------------------------------------*/

button.filter-button.gallery-btn {
  letter-spacing: 0.075rem;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-black);
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease-in;
}

button.filter-button.gallery-btn.active {
  color: var(--bs-light);
  background: var(--accent-color);
}

button.filter-button.gallery-btn:hover {
  color: var(--bs-light);
  background: var(--accent-color);
}



/*--------------------------------------------------------------
reviews section style start
--------------------------------------------------------------*/

.reviews-components {
  border: 2px solid #FAFAFA;
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--accent-color);
}

.rate {
  color: var(--accent-color);
}

#preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #f0f0f0, #ffffff);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .loader {
        font-size: 36px;
        font-weight: bold;
        color: #333;
        text-align: center;
       
    }

    .loader span {
        display: inline-block;
        margin: 0 5px;
        animation: bounce 0.5s infinite alternate, color-change 2s infinite;
    }

    .loader span:nth-child(1) { animation-delay: 0s; }
    .loader span:nth-child(2) { animation-delay: 0.1s; }
    .loader span:nth-child(3) { animation-delay: 0.2s; }
    .loader span:nth-child(4) { animation-delay: 0.3s; }
    .loader span:nth-child(5) { animation-delay: 0.4s; }
    .loader span:nth-child(6) { animation-delay: 0.5s; }
    .loader span:nth-child(7) { animation-delay: 0.6s; }
    .loader span:nth-child(8) { animation-delay: 0.7s; }

    @keyframes bounce {
        0% { transform: translateY(0); }
        100% { transform: translateY(-20px); }
    }

    @keyframes color-change {
        0% { color: #333; }
        50% { color: #ff6f61; }
        100% { color: #333; }
    }

    .loader:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease-in-out;
    }

    .content {
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .loaded .content {
        opacity: 1;
    }

    .loading-line {
    width: 30%;
    height: 6px;
    background-color: #f7cb05;
    border: solid #23418c;
    border-radius: 5PX;
    margin-top: 20px;
    animation: loading 2s infinite linear;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}


.bg-dark img{
  width: 70px;
  border-radius: 10px;
}

.bg-dark h5{
  color: #ffffff;
}

.bg-dark a{
  color: light blue;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.bg-dark a:hover{
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

.navbar img{
  width: 90px;
  border-radius: 10px;
}



.hero-form {
  background: transparent;
  border-radius: 30px;
  border: solid #ffffff;
  backdrop-filter: blur(10px);
}

.hero-form input{
  background: #f3f3f3;
  border-radius: 5px;
}

.hero-form textarea{
  background: #f3f3f3;
  border-radius: 5px;
  color: #ffffff;
}

.swiper-slide{
  border-radius:30px;
}

.swiper-slide img{
  width: 40px;
  border-radius: 50px;
}

.social{
  text-align: center;
  align-items: center;
}

.social a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 25px;
  color: #262626;
  text-align: center;
  margin: 0 10px;
  border-radius: 50%;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0,0,0,0.3);
  background: linear-gradient(0deg, #fff, #ddd);
  transition: 0.5s;
}

.social a[data-hover-color="#1877f2"]:hover {
  color: #1877f2;
}

.social a[data-hover-color="#c32aa3"]:hover {
  color: #c32aa3;
}

.social a[data-hover-color="#333333"]:hover {
  color: #333333;
}

.social a[data-hover-color="#ff0000"]:hover {
  color: #ff0000;
}

.social a:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ccc, #fff);
}

#resume img{
  width:80%;
  border: solid gray;
  border-radius: 50px;
}

.wrapper {
  display: inline-flex;
  list-style: none;
}

.wrapper .icon {
  color: #000000;
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .social-icon {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .social-icon::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .social-icon {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .social-icon {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .social-icon,
.wrapper .facebook:hover .social-icon::before {
  background: #1877f2;
  color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .social-icon,
.wrapper .twitter:hover .social-icon::before {
  background: #222222;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .social-icon,
.wrapper .instagram:hover .social-icon::before {
  background: #e4405f;
  color: #ffffff;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .social-icon,
.wrapper .linkedin:hover .social-icon::before {
  background: #0a66c2;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .social-icon,
.wrapper .youtube:hover .social-icon::before {
  background: #cd201f;
  color: #ffffff;
}
