:root {
    --ft-color:#36e0f7;
    --st-color:#02162d;
    --white-color:#fff;
    --black-color:#000;
    --gray-color:#787878;
    --bg-color:#eafcfe;
    --dark-gray:#3a4853;
    --gradiant-color:linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    --shadow-color:#36e0f73b;
}

/* ===================header-start================= */
#header-main {
    width: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: ease-in-out 0.5s ;
}
 
.header-top {
    width: 100%;
    display: inline-block;
    padding: 10px 0;
}

.header-img img {
    width: 100px;
}
.header-menu ul {
    display: flex;
    justify-content: end;
}
.header-menu ul li {
    list-style: none;
    padding: 0 15px;
}
.header-menu ul li:last-child {
   padding: 0;
}
.header-menu {
    justify-content: end;
    align-items: center;
    height: 100%;
    display: flex;
}
.header-menu ul li a {
    font-weight: 600;
    font-size: 20px;
    color: var(--white-color);
}

#header-main.add {
    position: fixed;
    top: 0;
    background: var(--white-color);
    transition: ease-in-out 0.5s ;
    box-shadow: 0 0 15px #ddd;
}
#header-main.add .header-menu ul li a {
    color: var(--st-color);
}
.color-logo {
    display: none;
}
.add .color-logo {
    display: block;
}
.add .white-logo {
    display: none;
}
/* ===================header-end================= */

/* ===================reset-css-start================= */
ul , ol {
    margin-bottom: 0;
    padding-left: 0;
}
a {
    text-decoration: none;
}
body {
    text-transform: capitalize;
}
p {
    margin: 0;
}
h1 , h2 , h3 , h4 , h5 , h6 {
    font-family: "Kite One", sans-serif;
    font-weight: bold;
    margin: 0;
}
p {
    font-family: "Roboto", sans-serif;
    margin: 0;

}
li , a {
list-style: none;
text-decoration: none;
}
/* ===================reset-css-end================= */
/* ===================button-start================= */
.btn {
    width: auto;
    display: inline-flex;
    background-image: linear-gradient(to right, var(--st-color) 0%, var(--ft-color) 100%);
    border-radius: 50px 50px 50px 0;
    padding: 10px 20px;
    justify-content: center;
    color:var(--white-color);
    align-items: center;
    border: 0;
    font-weight: 700;
    font-size: 18px;
  transition: ease-in-out .5s;

}
.btn:hover {
    background-image: var(--gradiant-color);
    transition: ease-in-out .5s;
    color: var(--white-color);
}
.btn i {
    color: var(--black-color);
    width: 35px;
    height: 35px;
    background: var(--white-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-left: 15px;
}
/* ===================button-end================= */
/* ===================banner-start================= */
#banner-main {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 600px;
    overflow: hidden;
}
#banner-main img {
    width: 100%;
    height: 100%;
}
.bannerContent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

.banner-img img {
    max-width:657px;
    object-fit: contain;
}
.banner-text h1 {
    color: var(--white-color);
}
.banner-text p {
    color: var(--white-color);
    padding: 15px 0;
}
/* ===================banner-end================= */
/* ===================section-text-start================= */
.section-text {
    width: 100%;
    display: inline-block;
}
.sub-taxt {
    font-size: 20px;
    color: var(--ft-color);
    font-family: "Roboto", sans-serif;
   font-weight: 700;
}
.section-tittle {
    font-family: "Kite One", sans-serif;
    font-weight: bold;
    /* padding: 10px 0; */
    font-size: 32px;
}
p.paragraph {
    font-size: 18px;
    color: var(--gray-color);
}
/* ===================section-text-end================= */
/* ===================about-start================= */
#about-main {
    width: 100%;
    display: inline-block;
}
.about-img img {
    width: 100%;
    aspect-ratio: 7 / 5;
    object-fit: contain;
}
.about-icon {
    width: 100px;
    float: left;
}
.about-text {
    width: 100%;
    display: inline-block;
}
.about-right-text {
    width: calc(100% - 100px);
    float: right;
}
.small-text {
    font-size: 21px;
    color: var(--black-color);
    font-weight: 700;
}
/* ===================about-end================= */

/* ===================service-start================= */
  .book-service {
    display: flex;
    justify-content: space-between;
}
#service-main {
    width: 100%;
    display: inline-block;
    background-color: var(--bg-color);
}
.service {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--white-color);
    border-radius: 25px;
    padding: 30px;
    border-bottom: 2px solid var(--ft-color);
    transition: all 0.3s ease-in-out;
}
.service-icon {
    width: 100px;
    height: 100px;
    background-color: var(--bg-color);
    border-radius: 50px;
}
.service-icon img {
    width: 100px;
    height: 100px;
    padding: 20px;
}
.service-text {
    width: 100%;
    text-align: center;
}
.read {
    color: var(--ft-color);
    font-size: 18px;
    font-weight: 600;
}
.service:hover {
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-bottom: 2px solid #249cb3;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}
.service:hover .small-text , .service:hover p.paragraph {
    color: var(--white-color);
}
.service:hover .read {
    color:var(--white-color);
}
a:hover {
        color:var(--white-color);

}
/* ===================service-end================= */

/* ===================choose-start================= */
#choose-main {
    width: 100%;
    display: inline-block;
}
.choose-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.choose-img img {
    width: 300px;
    transition: ease-in-out 0.7s;

}
.chhose-icon img {
    width: 60px;
}
.choose-img img:hover {
    transform: scale(1.1) ;
    transition: ease-in-out 0.7s;
}
.choose {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.choose-text {
    width: calc(100% - 100px);
    float: left;
    text-align: right;
}
.chhose-icon {
    width: 100px;
    float: right;
    text-align: right;
}
/* ===================choose-end================= */
/* ===================blog-start================= */
.blog-card {
    width: 100%;
    display: inline-block;
    position: relative;
}
.blog-img {
    position: relative;

}
.blog-img img {
    aspect-ratio: 3 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}
.blog-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 20px;
}
.extra-small-text {
    background-color: var(--dark-gray);
    border-radius: 15px;
    padding: 5px 10px;
    color: var(--white-color);
    width: 100%; 
    display: inline;
}
.blog-img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    background-color: var(--black-color);
    border-radius:25px;
    opacity:0.6;
}
.blog-icon {
    width:40px;
    height:40px;
    background-image:var(--gradiant-color);
    border-radius:50%;
}
.blog-icon i {
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--white-color);
    height: 100%;
    font-size: 18px;
}
.blog-card:hover .blog-img::after {
    background-image:var(--gradiant-color);
}
.blog-paragaph {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 85px;
    -webkit-line-clamp: 2;
}
/* ===================blog-end================= */

/* ===================testimonial-start================= */
#testimonial-main {
    width: 100%;
    display: inline-block;
    background-color: var(--bg-color);
}
.testimonial-img img {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    box-shadow: 0 0 15px var(--shadow-color);
} 
.testimonial {
    width: 80%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flow-root;
}
.testimonial-img {
    width: 250px;
    float: left;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 60px;
}
.testimonial-img::after {
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    left: -30px;
    background-image: url(../images/testimonial.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-text {
    width: calc(100% - 250px);
    float: right;
    background-color: var(--white-color);
    padding: 80px  60px 80px 120px;
    border-radius: 35px;
    border-bottom: 2px solid var(--ft-color);

}
.testimonial-content {
    width: 100%;
    display: inline-block;
}
/* ===================testimonial-end================= */
#footer-main {
    width: 100%;
    display: inline-block;
    background-image: url(../images/footer-background.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-logo img {
    width: 100px;
}
ul.footer-icon li {
    display: inline-block;
}
ul.footer-icon li {
    display: inline-block;
    border: 1px solid  var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin: 0 5px;
}
ul.footer-icon li a {
    display: flex;
    font-size: 20px;
    color: var(--white-color);
    justify-content: center;
    align-items: center;
    height: 100%;
}
.footer ul li {
    padding-bottom: 10px;
    list-style: none;
}
.footer ul li a {
    color: var(--white-color);
}
.footer ul li i {
    padding-right: 10px;
}
/* ===================footer-start================= */

/* ===================breadcrumb-start================= */
#breadcrumb-main {
    width: 100%;
    display: inline-block;
    position: relative;
    height: 300px;
    overflow: hidden;
}
#breadcrumb-main img{
    width: 100%;
    height: 100%;
}
.breadcrumb-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
}
.breadcrumb-text ul {
    background: var(--st-color);
    border-radius: 20px 20px 20px 0px;
    padding: 15px 30px;
}
.breadcrumb-text ul li {
    display: inline-block;
}
.breadcrumb-text ul li a{
    color: var(--white-color);
    font-size: 18px;
}
.breadcrumb-text ul li a span {
    color: var(--ft-color);
}
/* ===================breadcrumb-end================= */

/* ===================our-team-start================= */
.our-team {
    width: 100%;
    display: inline-block;
    box-shadow: 0 0 15px var(--shadow-color);
    border-radius: 25px;
}
.our-team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 25px;
}
.our-text {
    text-align: center;
    padding: 40px
}
.our-text ul li {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: inline-block;
    background-image:var(--gradiant-color);

}
.our-text ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 20px;
    color: var(--white-color);
}
/* ===================our-team-end================= */
.double {
    width: 100%;
    display: inline-block;
    background-color: var(--bg-color);
}
/* ===================contact-start================= */
#contact-main {
    width: 100%;
    display: inline-block;

}
.contact {
    width: 100%;
    max-width: 1100px;
    display: flex;
    margin: 0 auto;
    text-align: center;
}
.contact-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid var(--ft-color);
    background-color: var(--white-color);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 0 15px #dddddd54;
}
.contact-icon {
    width: 120px;
    float: left;
}
.contact-icon i {
    width: 90px;
    height: 90px;
    background-image:var(--gradiant-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--white-color);
}
.contact-text {
    width: calc(100% - 120px);
    float: right;
    text-align: left;

}
.contact-form {
    width: 100%;
    padding: 40px;
    display: inline-block;
    box-shadow: 0 0 15px #ddd;
    border-radius: 25px;
}
.contact-form input , textarea {
    border-radius: 10px;
    padding: 10px 30px;
    width: 100%;
}
/* ===================contact-end================= */


/* ===================blog-details-start================= */
#blog-details .blog-deatils-content{
    width: 100%;
    display: inline-block;
}
.blog-deatils-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
}
.blog-details-double {
    width: 100%;
    display: inline-block;
}
.blog-double-first  {
    width: 50%;
    float: left;
    padding-right: 20px;
}
.blog-double-first img , .blog-double-second img  {
    width: 100%;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
    object-position: top;
}
.blog-double-second {
    width: 50%;
    float: right;
}
.blog-details-right {
    width: 100%;
    display:flex;
    justify-content: center;
    align-items: center;
}
.blog-details-post-img {
    width: 150px;
    float: left;
}
.blog-details-post-img img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}
.blog-details-post-text {
    width: calc(100% - 150px);
    float: right;
}
.blog-popular {
    border-bottom: 1px solid #7878783d;
    position: relative;
}
.blog-popular::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: -1px;
    left: 0;
    border-bottom: 2px solid var(--ft-color);
}
.blog-category-right ul li a {
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-color);
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.blog-category-right ul li a:hover {
    background-color: var(--ft-color);
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
.blog-tags-right ul li {
    display: inline-block;
    background: var(--bg-color);
    padding: 8px;
    border-radius: 3px;
    margin-bottom:10px;
}
.blog-tags-right ul li a {
    color: var(--black-color);
    font-weight: 600;
}
ol.service-count {
    padding-left: 17px;

}
ol.service-count li {
    padding-bottom: 10px;
}
/* ===================blog-details-end================= */
/* ===================why-start================= */
#why-main {
    width: 100%;
    display: inline-block;
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.why-content ul li  {
    color: var(--white-color);
    list-style: none;
   padding-bottom: 20px;
   font-weight: bold;
   font-size: 20px;

}
.why-content ul li i {
    width: 30px;
    height: 30px;
    background-image:var(--gradiant-color);
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
/* ===================why-end================= */
/* ===================portfolio-start================= */
#portfolio-main {
    width: 100%;
    display: inline-block;
    background-color: var(--bg-color);
}
.portfolio-content {
    width: 100%;
    display: inline-block;
    position: relative;
}
.portfolio-img img {
    width: 100%;
}
.portfolio-img img {
    height: 550px;
    object-fit: cover;
    object-position: top;
}
.portfolio-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 100%;
    background-image: var(--gradiant-color);
    padding: 15px;
}

/* ===================portfolio-end================= */

/* ===================accordian-start================= */
.accordion-item {
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 0 20px var(--shadow-color);
    border-radius: 15px;
    border-bottom: 4px solid var(--ft-color);
}
.accordion-button:not(.collapsed) {
    background: none;
}
.accordion-button:focus-visible {
    border: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: var(--black-color);
    box-shadow: none;
}
/* ===================accordian-end================= */
/* ===================company-start================= */

.company-logo img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}
/* ===================company-end================= */

pre {
    background: #000;
    color: #00ff00;
    padding: 20px;
}
.paragraph h3 , h2 , h4 , h5 , h6 {
    padding: 10px  0;
}
.paragraph p {
    padding-bottom: 10px ;
}