:root {
    /* Background Color */
    --bg-white: #fff;
    --bg-black: #2C2C2C;
    --bg-light-gray: #f6f9fe;
    --bg-light-gray: #ffffff;
    /* --bg-light-gray:#f6f9fe; */


    --bg-gradient: linear-gradient(90deg, rgb(30, 60, 114) 0%, rgba(15, 51, 171, 1) 70%, rgba(15, 2, 180, 1) 100%);
    /* --bg-gradient:linear-gradient(to right, #1e3c72, #31476e, #8c52ff); */
    /* --bg-gradient: linear-gradient(90deg, rgba(30,60,114,1) 0%, rgba(15,51,171,1) 28%, rgba(15,2,180,1) 100%); */
    /* linear-gradient( 135deg, #6B73FF 10%, #000DFF 100%); */


    --bg-card-shodow: 0 0.188rem 1.25rem 0px rgba(0, 0, 0, 0.06);
    --bg-card-shodow: 0 2rem 5rem rgb(0, 0, 0, 0.06);
    --bg-light-gray-1: #eee;
    --bg-orange: linear-gradient(to right, #db5b24, #ff7a0d);

    ;


    /* Text Color */
    --primary-font: "Poppins", sans-serif;
    ;
    --text-white: #fff;
    --text-black: #2C2C2C;
    --text-light-black: #444;
    --text-light-blue: #009ffd;
    --text-light-gray: #7e8085;

}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.75rem;
    background: var(--bg-light-gray);
    color: var(--text-black);
    overflow-x: hidden;
}

h1 {
    color: var(--text-white);
    font-size: 50px;
    font-weight: 600;
    text-transform: capitalize;

}

h2 {



    font-weight: 400;
    text-transform: capitalize;
}

h3 {
    font-size: 1.563rem;
    font-weight: 400;
    color: var(--text-black);

}


.bg-gradient {
    background: var(--bg-gradient);

}

.navbar {

    top: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;

    -webkit-transition: .3s;
    transition: .3s;
    background: var(--bg-gradient);
}

.navbar .navbar-nav {


    color: var(--text-white);
    text-transform: capitalize;
    transition: .3s;
    font-weight: bold;
}



.nav-link {
    color: #fff;
    text-transform: capitalize;
    transition: .3s;
}

.nav-link:hover {
    color: #fff;
    font-size: large;
}


.home {
    min-height: 650px;
    height: 100%;
    background: var(--bg-gradient);
    background-size: cover;
    width: 100%;

}

.home1 {

    height: 100%;
    background: var(--bg-gradient);
    text-align: center;
    width: 100%;

}

.hero {
    padding-top: 60px;
}

.content {
    padding-top: 170px;
}

.card-service {
    padding: 30px 20px;

    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    border-radius: 10px;

}


.card-service:hover {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    background: var(--bg-white);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 40%);

}

.card-service::before {
    position: absolute;
    content: "";
    width: 0.063rem;
    height: 0.145rem;
    top: 0;
    left: 0;
    border-radius: 30%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;

}

.card-service:hover::before {
    width: 100%;
    background: var(--bg-gradient);

}





.title::before {
    content: '';
    background: var(--bg-gradient);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(55px);
}

.title::after {
    content: '';
    background: var(--bg-gradient);
    height: 12px;

    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    display: block;
    transform: translateY(8px);
}

.title1::before {
    content: '';
    background: var(--bg-white);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(55px);
}

.title1::after {
    content: '';
    background: var(--bg-white);
    height: 12px;

    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    display: block;
    transform: translateY(8px);
}

.title-mob::before {
    content: '';
    background: var(--bg-gradient);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(46px);
}

.title-mob::after {
    content: '';
    background: var(--bg-gradient);
    height: 12px;

    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
    transform: translateY(8px);
}

.title1-mob::before {
    content: '';
    background: var(--bg-white);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(46px);
}

.title1-mob::after {
    content: '';
    background: var(--bg-white);
    height: 12px;

    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
    transform: translateY(8px);
}

.image {
    background: linear-gradient(rgba(14, 0, 207, 0.2), rgba(39, 74, 190, 0.5)), url(images/home/bg.html)no-repeat;
    background-size: cover;
    height: 80vh;
    padding-top: 20px;
    width: 100%;
}

.image1 {
    background: linear-gradient(rgba(14, 0, 207, 0.2), rgba(73, 81, 105, 0.5)), url(images/about/new.html)no-repeat;
    background-size: cover;
    height: 60vh;
    padding-top: 20px;
    width: 100%;
}

.icon {
    border-radius: 50px;

    padding: 15px 15px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    background: var(--bg-light-gray);
    z-index: 999;
    position: absolute;


}

.icon1 {
    border-radius: 50px;

    width: 50px;
    height: 50px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    background: var(--bg-light-gray);



}

.card-domain {
    margin-top: 30px;
    margin-left: 5px;
    padding: 10px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    color: #2C2C2C;

}

.card-domain:hover {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    background: var(--bg-white);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);

}

.text-orange {

    color: #0f4cbd;
}

.bg-orange {
    background-color: #df580a;
}

.orange {
    color: #ff6b16;
}

.bg-blue {
    background: var(--bg-gradient);
}

.size {
    font-size: 18px;
}

.testimonial {
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 20px;
    /* text-transform: capitalize; */
}

.testimonial:hover {
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
}

.text-gray {
    color: rgba(37, 36, 36, 0.2)
}

footer {
    border-radius: 30px 30px 0px 0px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    color: var(--text-white);
}

/* Ensure all footer text and links are white */
footer, footer * {
    color: var(--text-white) !important;
}

.portfolio {
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;

}

.portfolio:hover {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    background: var(--bg-white);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    cursor: pointer;
}

.shadow-box {
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);

}

.contact-ad {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
}

.contact {
    padding: 44px;
    border-radius: 5px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
}

.contact1 {
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
}

.card-domain1 {
    margin-top: 30px;
    margin-left: 5px;
    padding: 10px;
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    color: #2C2C2C;
    position: relative;

    background-position: center center;
    overflow: hidden;
}

.card-domain1:hover {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    background: var(--bg-white);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    cursor: pointer;
}


/*  Assigning properties to inner
    content of card  */
.product-card {
    background-color: rgba(32, 72, 158, 0.9);
    color: #fff;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    opacity: 0;
    padding: 2rem 1.3rem 2rem 2rem;
    transition: all 0.4s ease 0s;
}

/*  On hovering card opacity
    of content must be 1*/
.card-domain1:hover .product-card {
    opacity: 1;
}

/*  General property for heading
    and paragraph*/
.product-card h2 {
    margin-top: 1rem;
}

.product-card p {

    height: 87%;
    padding-right: 1rem;
    font-weight: 200;
    line-height: 2.5rem;
    margin-top: 1.5rem;
}

.nav-orange {
    color: #ffa685;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/website-development.html");
    min-height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.feature_icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 3px;
    color: var(--text-white);
    font-size: 23px;
    border-bottom-left-radius: 25px;
    background: var(--bg-orange);
}

.single_feature {
    background: var(--bg-light-gray);


    position: relative;
    border-radius: 1.563rem;
    -webkit-box-shadow: 0 0.938rem 2.5rem 0 rgb(0 0 0 / 8%);
    box-shadow: 0 0.938rem 2.5rem 0 rgb(0 0 0 / 10%);
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.underline {
    /* font-size: 24px; */


    position: relative;
}

.underline::after {
    background-color: #efefef;
    bottom: 5px;
    content: '';
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0);
    width: 50px;
}

.card-pro {
    padding: 30px 20px;

    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;

}

.card-pro:hover {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    /* background: var(--bg-white); */
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    cursor: pointer;

}

.service-card {

    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.service-card:hover {
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: transform;
    background: var(--bg-white);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 20%);
    cursor: pointer;

}





.timeline {
    position: relative;
    padding: 4px 0 0 0;
    margin-top: 22px;
    list-style: none;
}

.timeline>li:nth-child(even) {
    position: relative;
    margin-bottom: 50px;
    height: 180px;
    right: -100px;
}

.timeline>li:nth-child(odd) {
    position: relative;
    margin-bottom: 50px;
    height: 180px;
    left: -100px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
    min-height: 170px;
}

.timeline>li .timeline-panel {
    position: relative;
    float: left;
    width: 41%;


}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 50%;
    border: 7px solid white;
    border-radius: 100%;
    /* border-color: linear-gradient(90deg, rgba(30,60,114,1) 0%, rgba(15,51,171,1) 70%, rgba(15,2,180,1) 100%); */
    background: white;
    box-shadow: 0 0 8px rgba(15, 51, 171, 1);
    width: 200px;
    height: 200px;
    margin-left: -100px;
}

.timeline>li .timeline-image:hover {

    box-shadow: 0 0 10px #4582ec;
    border: 7px solid var(--bg-white);


}

.timeline>li .timeline-image h4 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4 {

    padding: 0;

}

.timeline .timeline-heading h4.subheading {
    margin: 0;
    padding: 0;
    text-transform: none;
    font-size: 18px;
    color: #333333;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
    color: #808080;
}

/*Style for even div.line*/
.timeline>li:nth-child(odd) .line:before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 690px;
    width: 4px;
    height: 270px;
    background: linear-gradient(90deg, rgba(30, 60, 114, 1) 0%, rgba(15, 51, 171, 1) 70%, rgba(15, 2, 180, 1) 100%);
    -ms-transform: rotate(-44deg);
    /* IE 9 */
    -webkit-transform: rotate(-44deg);
    /* Safari */
    transform: rotate(-44deg);
    box-shadow: 0 0 5px #4582ec;
}

/*Style for odd div.line*/
.timeline>li:nth-child(even) .line:before {
    content: "";
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 450px;
    width: 4px;
    height: 270px;
    background: linear-gradient(90deg, rgba(30, 60, 114, 1) 0%, rgba(15, 51, 171, 1) 70%, rgba(15, 2, 180, 1) 100%);
    -ms-transform: rotate(44deg);
    /* IE 9 */
    -webkit-transform: rotate(44deg);
    /* Safari */
    transform: rotate(44deg);
    box-shadow: 0 0 5px #4582ec;
}

/* Medium Devices, .visible-md-* */
@media (min-width: 992px) and (max-width: 1199px) {
    .timeline>li:nth-child(even) {
        margin-bottom: 0px;
        min-height: 0px;
        right: 0px;
    }

    .timeline>li:nth-child(odd) {
        margin-bottom: 0px;
        min-height: 0px;
        left: 0px;
    }

    .timeline>li:nth-child(even) .timeline-image {
        left: 0;
        margin-left: 0px;
    }

    .timeline>li:nth-child(odd) .timeline-image {
        left: 690px;
        margin-left: 0px;
    }

    .timeline>li:nth-child(even) .timeline-panel {
        width: 76%;
        padding: 0 0 20px 0px;
        text-align: left;
    }

    .timeline>li:nth-child(odd) .timeline-panel {
        width: 70%;
        padding: 0 0 20px 0px;
        text-align: right;
    }

    .timeline>li .line {
        display: none;
    }
}

/* Small Devices, Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .timeline>li:nth-child(even) {
        margin-bottom: 0px;
        min-height: 0px;
        right: 0px;
    }

    .timeline>li:nth-child(odd) {
        margin-bottom: 0px;
        min-height: 0px;
        left: 0px;
    }

    .timeline>li:nth-child(even) .timeline-image {
        left: 0;
        margin-left: 0px;
    }

    .timeline>li:nth-child(odd) .timeline-image {
        left: 520px;
        margin-left: 0px;
    }

    .timeline>li:nth-child(even) .timeline-panel {
        width: 70%;
        padding: 0 0 20px 0px;
        text-align: left;
    }

    .timeline>li:nth-child(odd) .timeline-panel {
        width: 70%;
        padding: 0 0 20px 0px;
        text-align: right;
    }

    .timeline>li .line {
        display: none;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 767px) {
    .timeline>li:nth-child(even) {
        margin-bottom: 0px;
        min-height: 0px;
        right: 0px;
    }

    .timeline>li:nth-child(odd) {
        margin-bottom: 0px;
        min-height: 0px;
        left: 0px;
    }

    .timeline>li .timeline-image {
        position: static;
        width: 150px;
        height: 150px;
        margin-bottom: 0px;
    }

    .timeline>li:nth-child(even) .timeline-image {
        left: 0;
        margin-left: 0;
    }

    .timeline>li:nth-child(odd) .timeline-image {
        float: right;
        left: 0px;
        margin-left: 0;
    }

    .timeline>li:nth-child(even) .timeline-panel {
        width: 100%;
        padding: 0 0 20px 14px;
    }

    .timeline>li:nth-child(odd) .timeline-panel {
        width: 100%;
        padding: 0 14px 20px 0px;
    }

    .timeline>li .line {
        display: none;
    }
}

.feature_icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 3px;
    color: var(--text-white);
    font-size: 23px;
    border-bottom-left-radius: 25px;
    background: var(--bg-orange);
}

.title2::before {
    content: '';
    background: var(--bg-white);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(46px);
}

.title2::after {
    content: '';
    background: var(--bg-white);
    height: 12px;

    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
    transform: translateY(8px);
}


.title-md::before {
    content: '';
    background: var(--bg-gradient);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(50px);
}

.title-md::after {
    content: '';
    background: var(--bg-gradient);
    height: 12px;

    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
    transform: translateY(8px);
}

.title1-md::before {
    content: '';
    background: var(--bg-white);
    height: 5px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transform: translateY(50px);
}

.title1-md::after {
    content: '';
    background: var(--bg-white);
    height: 12px;
    width: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    display: block;
    transform: translateY(8px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;        
  justify-content: center;
  text-align: center;
  gap: 10px;               

}

/* make footer links, email and tel links white */
.footer-links a,
footer a,
footer a[href^="mailto"],
footer a[href^="tel"] {
  color: var(--text-white) !important;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -15px;
  color: rgba(255,255,255,0.5);
}

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

/* responsive adjustments */
@media (max-width: 640px) {
  .footer-links {
    flex-direction: column;     
    align-items: center;
    gap: 6px;                  
  }

  .footer-links a {
    margin: 0;
  }

  .footer-links a::after {
    display: none;              
  }
}

.container h2{
    font-weight: 600;
}


