/*------------------------------------------------------------------
Project:Azota
Author: The_Krishna       
Last change: 3 April, 2023  
Primary use:  Professional Digital Creative Agency Website 
-------------------------------------------------------------------*/

/*----------------Table of contents Start---------------------------
1 Default CSS
2 Animation CSS
3 Header Section Start
4 Hero Section
5 About Section
6 Services Section
7 Skills Section
8 Video Section
9 Counter Section
10 Idea Section
11 Testimonial Section
12 Porfolio Section
13 Pricing Section
14 Team Section
15 News Section
16 Skype Section
17 Map Section
18 Contact Section
19 Subscribe Section
20 Footer Section
21 Scroll Bottom to Top Start
22 News Modal Start
23 Services Modal Start
24 Portfolio Modal Start
25 Price Modal Start

---------Table of contents End-----------------------------------*/

/*------------------------ [Color codes] ------------------------                     
Background:     #ffffff 
Content:        #808080 
Heading h1:     #ffffff
Header h2:      #ffffff
paragraph p:    #808080    

a (standard):   #ffffff
a (visited):    #c02723
a (hover):      #c02723
a (active):     #c02723
-------------------------------------------------------------------*/

/************************ 1 Default css ***************************/
body {
   margin: 0;
   padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
}
html{
    scroll-behavior: smooth;
}
.modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal .modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
}

.modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #f35333;
}

/************************ 2 Animation CSS ***************************/
@keyframes fixedheader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@-webkit-keyframes fixedheader {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
}
100% {
    transform: scale(1.3);
}
}
@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
}
100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
}

@keyframes Slick-FastSwipeIn{
  0%{transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);}
  100%{transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);}
}
@-webkit-keyframes Slick-FastSwipeIn{
  0%{-webkit-transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);transform:rotate3d(0,1,0,150deg) scale(0)  perspective(400px);}
  100%{-webkit-transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);transform:rotate3d(0,1,0,0deg) scale(1) perspective(400px);}
}
@keyframes in-left{
  from{-webkit-transform:rotate3d(0,1,0,90deg);transform:rotate3d(0,1,0,90deg);}
  to{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
}
@-webkit-keyframes in-left{
  from{-webkit-transform:rotate3d(0,1,0,90deg);transform:rotate3d(0,1,0,90deg);}
  to{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
}
@keyframes out-left{
  from{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
  to{-webkit-transform:rotate3d(0,1,0,86deg);transform:rotate3d(0,1,0,86deg);}
}
@-webkit-keyframes out-left{
  from{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
  to{-webkit-transform:rotate3d(0,1,0,86deg);transform:rotate3d(0,1,0,86deg);}
}
@keyframes in-right{
  from{-webkit-transform:rotate3d(0,-1,0,90deg);transform:rotate3d(0,-1,0,90deg);}
  to{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
}
@-webkit-keyframes in-right{
  from{-webkit-transform:rotate3d(0,-1,0,90deg);transform:rotate3d(0,-1,0,90deg);}
  to{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
}
@keyframes out-right{
  from{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
  to{-webkit-transform:rotate3d(0,-1,0,86deg);transform:rotate3d(0,-1,0,86deg);}
}
@-webkit-keyframes out-right{
  from{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg);}
  to{-webkit-transform:rotate3d(0,-1,0,86deg);transform:rotate3d(0,-1,0,86deg);}
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes animate-counter{
    0%{ left: 0; }
}

@-webkit-keyframes animate-counter{
    0%{ left: 0; }
}

@keyframes animate-positive{
    0%{ width: 0; }
}

@-webkit-keyframes animate-positive{
    0%{ width: 0; }
}
@keyframes scrolltop {
    0% {
     box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
 }
 100% {
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
}
}
@-webkit-keyframes scrolltop {
    0% {
     -webkit-box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
     box-shadow: 0 0 0 0px hsl(16deg 98% 67%);
 }
 100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
}
}
@keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}

/************************ 3 Header Section ***************************/
#header_sec {
    position: absolute;
    width: 100%;
    z-index: 99;
    background: #FFFFFF;
    -webkit-box-shadow: 0 2px 12px -4px rgb(0 0 0 / 12%);
    box-shadow: 0 2px 12px -4px rgb(0 0 0 / 12%);
}
.site_content{
    overflow: hidden;
}
#header_sec .row {
    align-items: center;
}
.logo_section {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.site_logo {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

/* Mobile slide-out menu: white background, black text */
.offcanvas.offcanvas-end {
    background: #FFFFFF !important;
}
.offcanvas .offcanvas-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #eee;
}
.offcanvas .navbar-nav {
    background: #FFFFFF !important;
}
.offcanvas .nav-item {
    border-bottom: 1px solid #eee;
}
.offcanvas .nav-link {
    color: #1A1A1A !important;
    opacity: 1 !important;
}
.offcanvas .nav-link.active,
.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus {
    color: #c02723 !important;
}
.offcanvas .sidebar_close_btn {
    background-color: #FFFFFF;
    border: 1px solid #1A1A1A;
    opacity: 1;
}
.offcanvas .sidebar_close_btn:hover {
    opacity: 0.7;
}
.nav-link.donate_btn {
    background: #c02723;
    color: #FFFFFF !important;
    padding: 10px 24px !important;
    border-radius: 30px;
    margin-left: 10px;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap !important;
        align-items: center;
    }
    #header_sec .nav-link {
        margin: 0 10px !important;
    }
    #header_sec .nav-link.donate_btn {
        margin-left: 14px !important;
        padding: 9px 20px !important;
        font-size: 14px;
    }
}
@media (min-width: 992px) and (max-width: 1250px) {
    #header_sec .nav-link {
        margin: 0 7px !important;
        font-size: 13px;
    }
    #header_sec .nav-link.donate_btn {
        padding: 8px 16px !important;
        margin-left: 10px !important;
    }
}
.nav-link.donate_btn:hover {
    background: #1A1A1A;
    color: #FFFFFF !important;
}
.offcanvas .nav-link.donate_btn {
    display: inline-block;
    text-align: center;
    margin: 15px 0 0 0;
}
.offcanvas .nav-link.donate_btn:hover,
.offcanvas .nav-link.donate_btn:focus {
    color: #FFFFFF !important;
    background: #1A1A1A;
}
.offcanvas .nav-item:has(.donate_btn) {
    border-bottom: none;
}
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 4px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-toggler-icon.sidebar_open_icon {
    background-image: none !important;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-toggler-icon.sidebar_open_icon svg {
    width: 24px;
    height: 24px;
}
.navbar-toggler-icon.sidebar_open_icon svg path {
    fill: #1A1A1A !important;
}
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.05em;
    color: #1A1A1A;
    padding: 0 !important;
    margin: 0 15px;
    text-transform: uppercase;
}
li.nav-item:last-child a.nav-link {
    margin-right: 0;
}
.nav-link.active{
    color: #c02723 !important;
}
.fixed {
    position: fixed !important;
    z-index: 1;
    background: #FFFFFF;
    width: 100%;
    top: 0%;
    left: 0;
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    -webkit-animation: fixedheader 600ms ease 0ms 1 forwards;
    animation: fixedheader 600ms ease 0ms 1 forwards;
}
.nav-link:hover,
.nav-link:focus{
    color: #c02723 !important;
    transition: 0.3S;
    -webkit-transition: 0.3S;
    -o-transition: 0.3S;
}
.nav-link:focus, 
.nav-link:hover {
    color: #c02723;
}
header.fixed , header.fixed nav.navbar.navbar-expand-lg.navbar-light {
    height: 80px;
}

/****************************** 4 Hero Section ***********************/
.img-fill{
    position:relative;
    height:100%;
}
.img-fill img{
    height:100%;
    width:100%;
    object-fit:cover;
    -o-object-fit:cover;
    animation: fadezoom 8s 0s forwards;
    -webkit-animation: fadezoom 8s 0s forwards;
}
.item{
    height:100vh;
    overflow:hidden;
    outline:none;
}
.left-arrow:hover,
.right-arrow:hover {
    background: #c02723;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.img-fill:after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#151515;
    opacity:0.5;
}
.carousel-item.active{
    animation:Slick-FastSwipeIn 0s both;
    -webkit-animation:Slick-FastSwipeIn 0s both;
}
.item .contain-wrapper{
    position:absolute;
    left:0;
    top:0;
    z-index:1;
    height:100%;
    width:100%;
    display:flex;
    display:-webkit-box;
    display:-ms-flexbox;
    align-items:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    justify-content:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    text-align:center;
}
.item h1{
    margin:0px;
    font-size:84px;
    font-weight:300;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 275;
    font-size: 100px;
    line-height: 100px;
    color: #FFFFFF;
}
span.bold_txt {
    font-weight: 800;
}
.slider_button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    text-align: center;
}
.slider_button_link {
    display: inline-block;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    padding: 21px 57px;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.slider_button_link span {
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}
.slider_button_link p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 12px;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
}
a.slider_button_link {
    text-decoration: none;
}
.item{
    color:#fff;
    font-family:'Roboto',sans-serif;
}
.item  h5{
    font-size:32px;
    font-weight:300;
    padding:10px 0 0;
    margin:0;
    text-transform:capitalize;
}
.item .contain-wrapper .info{
    max-width:1170px;
}
.carousel-item.active .item h1{
   animation:fadeInDown 1s both 1s;
   -webkit-animation:fadeInDown 1s both 1s;
}
.item h1{
   animation:fadeOutRight 1s both;
   -webkit-animation:fadeOutRight 1s both;
}
.carousel-item.active .business_button{
   animation:fadeInLeft 1s both 1.5s;
   -webkit-animation:fadeInLeft 1s both 1.5s;
}
.business_button{
    animation:fadeOutLeft 1s both;
    -webkit-animation:fadeOutLeft 1s both;
}
.hero_prev,
.hero_next {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 98;
    width: 60px;
    height: 60px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    margin-top: 106px;
}
.left-arrow {
    left: 80px;
    top: 50%;
    margin: 0;
}
.right-arrow {
    right: 60px;
    top: 50%;
    margin: 0;
}
.slider_button_link:hover {
 background-color: #c02723;
 transition: 0.3s;
 -webkit-transition: 0.3s;
 -o-transition: 0.3s;
}

/************************ 5 About Section ***************************/
.ult_txt {
    font-style: normal;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
}
.comm_txt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
.orange_box {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #c02723;
  width: 300px;
  height: 100px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
  -webkit-clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0% 70%);
}
.our_mission {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #141414;
}
.orange_txt {
    color: #c02723;
}
.binj_txt {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #141414;
  margin-top: 60px;
}
.direc_txt {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}
.about_third_sec {
    margin-top: 80px;
}
.number_heading { 
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    color: #141414;
    margin-top: 20px;
}
.commo_txt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 40px;
}
.about_first_sec {
    margin: 80px 0;
}
#about_sec {
    padding-bottom: 100px;
    background: #FFFFFF;
}
.about_middle_img_sec {
 position: relative;
}
.about_middle_img:hover .about_middle_img_sec:before {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) scale(1);
    -webkit-transform: perspective(400px) rotateY(0deg) scale(1);
}
.pbmit-animation-style1.active
{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pbmit-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.pbmit-animation-style1.active img{
    transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
}
.pbmit-animation-style1 img{
    -webkit-transform: scale(1.5) translate(-100px, 0px);
    -ms-transform: scale(1.5) translate(-100px, 0px);
    transform: scale(1.5) translate(-100px, 0px);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    -o-transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

/************************ 6 Services Section ***************************/
.services_sec_heading {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  color: #1A1A1A;
  margin-top: 40px;
}
.services_sec_txt {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #808080;
  margin-top: 20px;
}
.services_img_sec:before {
    content: "";
    border-radius: 100%;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.services_img_sec {
    position: relative;
    z-index: 1;
    margin-top: 100px;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}
.services_img_sec.bulb:before {
    background-color: #F4DBD2;
}
.services_img_sec.ring:before {
 background-color: #CDCDF4;
}
.services_img_sec.media:before {
 background-color: #E3F4E9;
}
.services_img_sec:hover:before {
    top: 0;
    left: 0;
}
.more_btn {
    font-family: 'Poppins';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    padding: 12px 32px;
    text-transform: uppercase;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    position: relative;
    margin-top: 40px;
    background: #c02723;
    border: 2px solid #c02723;
    border-radius: 30px;
    width: fit-content;
}
.more_btn:hover {
    background: transparent;
    color: #c02723;
    border-color: #c02723;
}
#services_sec {
    background: #FFFFFF;
    padding-bottom: 100px;
}
.video_btn_close {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    padding: 0;
    border-radius: 0px;
    opacity: 1;
    width: 30px;
    border: 1px solid black;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    height: 30px;
}
.video_btn_close:hover {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid black;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

/************************ 7 Skills Section ***************************/
.our_skill_txt {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #141414;
}
.modern_txt {
 font-family: 'Poppins', sans-serif;
 font-style: normal;
 font-weight: 700;
 font-size: 48px;
 line-height: 60px;
 color: #141414;
 margin-top: 20px;
}
.our_skill_desc {
   font-family: 'Inter', sans-serif;
   font-style: normal;
   font-weight: 400;
   font-size: 18px;
   align-items: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   color: #808080;
   margin-top: 40px;
}
.progresbar-counter {
    margin-bottom: 40px;
}
.progresbar-counter:last-child {
    margin-bottom: 0;
}
.skill-bars{
    margin-top: 60px;
}
.progress-title {
 font-family: 'Poppins', sans-serif;
 font-weight: 600;
 font-size: 18px;
 line-height: 18px;
 color: #141414;
 letter-spacing: 0.05em;
 margin-bottom: 20px;
 float: left;
 text-transform: uppercase;
}
.progress-value{
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #141414;
    float: right;
    font-family: 'Poppins', sans-serif;
}
.reveal.active .progress-value{
    animation: animate-counter 4.5s;
    -webkit-animation: animate-counter 4.5s; 
    -moz-animation: animate-counter 4.5s;
    -ms-animation: animate-counter 4.5s; 
    -o-animation: animate-counter 4.5s;
}
.skil-progressbar {
    height: 2px;
    background-color: #808080;
    margin-top: 20px;
    clear: both;
}
.skil-progressbar span{
    display: inline-block;
    position: absolute;
    height: 8px;
    
}
.reveal.active .skil-progressbar span{
    animation: animate-positive 4.5s;
    -webkit-animation: animate-positive 4.5s; 
    -moz-animation: animate-positive 4.5s;
    -ms-animation: animate-positive 4.5s; 
    -o-animation: animate-positive 4.5s; 
}
.skills_top_sec {
    margin-bottom: 80px;
}
#skills_sec{
    padding-bottom: 100px;
    background: #F7F6F4;
}

/************************ 8 Video Section ***************************/
#video_sec{
    background-image: url(../images/video/bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    max-width: 100%;  
    padding-bottom: 230px;
    position: relative;
}
.video_sec_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 64px;
    line-height: 72px;
    color: #FFFFFF;
}
.video_overlay {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.check_btn {
    padding: 20px 37px 20px 40px !important;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 30px;
    margin-top: 80px;
}
.btn:hover{
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
}
i.play_icon.fa-solid.fa-play {
   font-size: 36px;
   color: #ffffff;
   background-color: rgba(255, 255, 255, 0.2);
   border-radius: 50px;
   width: 100px;
   height: 100px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}
i.play_icon.fa-solid.fa-play:hover {
    background: #c02723;
}
.video_sec_play{
    position: absolute;
}
.video_button{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.video_full_Sec{
    padding-top: 100px;
}
.video_second_sec{
    margin-top: 35px;
}
.modal-content-video {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal_video-sec{
    width: 100%;
    object-fit: contain;
    -o-object-fit: contain;
    height: auto;
}
.modal-dialog{
    max-width: 1170px;
    height: 100%;
    width: 100%;
    padding: 0 20px !important;
}
.video_button:hover a {
    background: #c02723;
}
.video_button svg {
    animation: rotating 7s linear infinite;
    -webkit-animation: rotating 7s linear infinite;
    -moz-animation: rotating 7s linear infinite;
    -ms-animation: rotating 7s linear infinite;
    -o-animation: rotating 7s linear infinite;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
/************************ 9 Counter Section ***************************/
.counter_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    color: #141414;
}
.counter_details:hover .counter_heading {
    color: #c02723;
}
.counter_heading {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #808080;
    margin-top: 20px;
}
.row.counter_full_sec {
    border-bottom: 4px solid #c02723;
    padding: 80px 0;
    background-color: #FFFFFF;
    box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -webkit-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
}
.reveal.active .skil-progressbar span{
    animation: animate-positive 4.5s;
    -webkit-animation: animate-positive 4.5s; 
    -moz-animation: animate-positive 4.5s;
    -ms-animation: animate-positive 4.5s; 
    -o-animation: animate-positive 4.5s; 
}
.reveal.active .progress-value{
    animation: animate-counter 4.5s;
    -webkit-animation: animate-counter 4.5s; 
    -moz-animation: animate-counter 4.5s;
    -ms-animation: animate-counter 4.5s; 
    -o-animation: animate-counter 4.5s;
}

/************************ 10 Idea  Section ***************************/
.contact_btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    color: #141414;
    border: 2px solid #141414 !important;
    border-radius: 30px;
    padding: 20px 37px 20px 40px !important;
    background-color: #ffffff;
}
.idea_sec_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
}
#idea_sec {
    padding: 100px 0;
}
#counter_sec {
    margin-top: -130px;
    position: relative;
}

/************************ 11 Testimonial Section ***************************/
.client_image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.review_icon i {
    width: 60px;
    height: 60px;
    background: #c02723;
    border-radius: 50%;
    color: white;
}
.review_icon {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.client_review p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    color: #FFFFFF;
}
.testi_img_sec {
    position: relative;
    width: 200px;
    height: 200px;
}
.client_name h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-top: 60px;
}
.client_position h5 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}
section#testimonial {
    background: #141414;
}
.testimonial_slider{
    margin-top: 80px;
}
.logo_slider{
    padding: 100px 0;
}
.slick-custom-arrow {
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 98;
    width: 60px;
    height: 60px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
    margin-top: 106px;
}
.slick-custom-arrow-left {
    right: 80px;
    top: 50%;
}
.slick-custom-arrow-right {
    right: 0;
    top: 50%;
}
i.fas.fa-angle-right,
i.fa.fa-angle-left {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
}
.logo_imgg {
    margin-left: auto;
    margin-right: auto;
}
.slick-custom-arrow:hover {
    background: #c02723;
}
.logo_img_sec{
    position: relative;
    height: 50px;
    overflow: hidden;
}
.logo_img_sec:hover img{
 -webkit-transform: translateY(-63px);
 -ms-transform: translateY(-63px);
 transform: translateY(-63px);
 -webkit-transition: all 700ms ease;
 -o-transition: all 700ms ease;
 transition: all 700ms ease;
}
.logo_img_sec img{
    transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

/************************ 12 Portfolio Section ***************************/
.portfolio_overlay {
    background-color: #141414;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}
.portfolio_content {
    padding: 30px;
    background-color: #141414;
    position: absolute;
    cursor: pointer;
    margin-right: 40px;
    bottom: -40px;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}
.portfolio_button {
    display: inline-block;
    z-index: 1;
    padding: 0px 20px;
    color: #EA4335;
}
.portfolio_name h5 {
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
    margin-top: 20px;
    cursor: pointer;
    text-transform: capitalize;
}
.portfolio_middle_content {
    column-gap: 15px;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
}
.portfolio_top_sec {
    padding-bottom: 80px;
}
.portfolio-title h4{
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Poppins';
    letter-spacing: 0.05em;
    color: #808080;
    text-transform: uppercase;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}
.portfolio_image img {
    width: 100%;
}
.portfolio_button:before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #c02723;
    border-radius: 30px;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
}
#portfolio_sec{
    padding-bottom: 140px;
    background: #F7F6F4;
}
.portfolio_box:hover .portfolio_button:before {
    background-color: #141414;
    left: 30px;
}
.portfolio_box:hover .portfolio_content {
    background-color: #c02723;
}
.portfolio_box:hover .portfolio-title h4{
   color: #141414;
}
.portfolio_sec_full:hover .portfolio_overlay {
    opacity: 0.6;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    -webkit-box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

/************************ 13 Pricing Section ***************************/
.we_offer_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #FFFFFF;
    padding: 80px 0;
}
#pricing_sec {
  background: #141414;
  padding-bottom: 100px;
}
.plan_btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    background: #c02723;
    border-radius: 30px;
    padding: 20px 38px 20px 40px;
    color: #FFFFFF;
    margin-top: 60px;
    border: none;
}
.basic_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: #FFFFFF;
}
.price_digit {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 100px;
    line-height: 100px;
    color: #c02723;
    margin-top: 40px;
}
.per_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}
.lince_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.1em;
    color: #808080;
    margin-top: 20px;
}
ul.price_deatails li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #FFFFFF;
}
li.color_price {
    text-decoration-line: line-through;
    -webkit-text-decoration-line: line-through;
    color: #808080 !important;
}
.pricing_table {
    padding: 40px;
    border: 2px solid #FFFFFF;
    -webkit-transform: translateY(0px) scale();
    -ms-transform: translateY(0px) scale();
    transform: translateY(0px) scale();
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.pricing_table:hover {
   -webkit-transform: translateY(-16px) scale(1.02);
   -ms-transform: translateY(-16px) scale(1.02);
   transform: translateY(-16px) scale(1.02);
   -webkit-transition: all 0.5s ease;
   -o-transition: all 0.5s ease;
   transition: all 0.5s ease;
}
.price_bottom {
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}
ul.price_deatails {
    margin-top: 60px;
}

/************************ 14 Team Section ***************************/
.team_bottom_sec h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #808080;
}
.team_middle_sec1 h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #141414;
    padding: 80px 0;
}
#team_sec {
    padding-bottom: 100px;
    background: #F7F6F4;
}
.team_top_sec img {
    width: 100%;
}
.team_bottom_sec p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    color: #FFFFFF;
    margin-top: 20px;
}
.team_bottom_sec {
    background: black;
    padding: 20px;
    position: relative;
}
.icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    line-height: 36px;
    position: absolute;
    top: -20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    cursor: pointer;
}
.abc {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-180px);
    -webkit-transform: translateY(-180px);
    -ms-transform: translateY(-180px);
    bottom: 0;
}
.icon22 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    margin-top: 15px;
}
.team_full_section:hover .abc{
    opacity: 1;
    transition: 0.8s;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;

}
.icon22 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translate(8px, 8px);
    -ms-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
}
.icon.plus_icon svg path {
    fill: #c02723;
}
.icon22:hover {
    background: #fe7c00;
}
.icon22:hover svg path {
    fill: white;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.team_top_sec:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    right: 0px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: rgb(21 21 21 / 30%);
    z-index: 1;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    transform: perspective(400px) rotateX(90deg) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
}
.team_top_sec img {
    width: 100%;
    transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}
.team_top_sec {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: -1;
}
.team_full_section:hover .team_top_sec:before{
 -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
 -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
 transform: perspective(400px) rotateX(0deg) scaleY(1.0);
 -webkit-transition-timing-function: ease-in-out;
 -o-transition-timing-function: ease-in-out;
 transition-timing-function: ease-in-out;
 -webkit-transition-duration: .7s;
 -o-transition-duration: .7s;
 transition-duration: .7s;
 -webkit-transition-property: all;
 -o-transition-property: all;
 transition-property: all;
}
.team_full_section:hover .team_top_sec img  {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.team_full_section:hover .team_bottom_sec p{
    color: #c02723;
}

/*********************** 15 News Section ***************************/
.event_sec p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #c02723;
}
.date_txt p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #808080;
}
.team_deatails h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #1A1A1A;
    cursor: pointer;
}
.team_deatails {
    margin-top: 20px;
}
.news_button{
    margin-top: 40px;
}
#news_Section {
    background: #FFFFFF;
    padding-bottom: 228px;
}
.readmore_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 14px;
    color: #FFFFFF;
    padding: 12px 32px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #c02723;
    border: 2px solid #c02723;
    border-radius: 30px;
    width: fit-content;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.readmore_button:hover {
    background: transparent;
    color: #c02723;
    border-color: #c02723;
}
.news_button a {
    text-decoration: none;
}
.team_event_sec{
    margin-top: 40px;
}
.team_middle_sec {
    margin-top: 80px;
}
.case-one_overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: -webkit-transform 0.4s ease;
    -webkit-transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease,-webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}
.case-one_overlay:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    z-index: 1;
    right: 0px;
    bottom: 0px;
    opacity: 0.80;
    background-color: rgb(21 21 21 / 30%);
}
.team_img_sec:hover .case-one_overlay {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}
.team_img_sec {
    position: relative;
}
.team_img_sec img {
    width: 100%;
}
.ways_txt{
    display: inline;
    transition: all 0.35s linear;
    background: linear-gradient(to bottom, #c02723 0%, #c02723 98%);
    background-size: 0px 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    text-decoration: none;
}
.team_middle_first_sec:hover .ways_txt{
  background-size: 100% 2px;
}

/*********************** 16 Skype Section ***************************/
#skype_section {
    margin-top: -138px;
}
.skype_row {
    margin: 0;
    background-color: #ffffff;
    box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -webkit-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -moz-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -ms-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
    -o-box-shadow: 0px 5px 40px rgba(20, 20, 20, 0.08);
}
.skype_left_column {
    padding: 0;
}
.skype_button {
 width: 100px;
 height: 100px;
 background-color: #ffffff;
 border-radius: 100%;
 position: absolute;
 top: 50%;
 right: -50px;
 cursor: pointer;
 display: flex;
 display: -webkit-box;         
 display: -ms-flexbox;      
 display: -webkit-flex;
 align-items: center;
 -webkit-box-align: center;
 -webkit-align-items: center;
 -ms-flex-align: center;
 justify-content: center;
 -webkit-box-pack: center;
 -moz-box-pack: center;
 -ms-flex-pack: center;
 -webkit-justify-content: center;
 transform: translateY(-50%);
 -webkit-transform: translateY(-50%);
 -moz-transform: translateY(-50%);
 -ms-transform: translateY(-50%);
 -o-transform: translateY(-50%);
 transition: all .3s ease;
 -webkit-transition: all .3s ease;
 -moz-transition: all .3s ease;
 -o-transition: all .3s ease;
 -ms-transition: all .3s ease;
}
.skype_icon {
    width: 80px;
    height: 80px;
    background-color: #c02723;
    border-radius: 100%;
    display: flex;
    display: -webkit-box;         
    display: -ms-flexbox;      
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.skype_right_column {
    padding: 57px 60px 57px 100px;
}
.skype_heading h5 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    color: #141414;
    font-family: 'Poppins';
}
.skype_para p {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #808080;
    margin-top: 20px;
    text-transform: capitalize;
    font-family: 'Poppins';
}
.skype_para p a {
    font-weight: 600;
    color: #c02723;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-transform: uppercase;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.skype_para p a:hover {
    color: #000000;
}

/*********************** 17 map Section ***************************/
#map_section iframe {
    width: 100%;
    margin-top: -138px;
}

/************************ 18 Contact Section ***************************/
.form_field {
    background-color: #ffffff;
    border: none;
    border-bottom: 2px solid #808080;
    width: 100%;
    padding: 0;
    padding-bottom: 15px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #808080;
}
.border-bottom {
    display: block;
    width: 100px;
    height: 6px;
    background-color: #141414;
    position: absolute;
    bottom: -5px;
}
.message_textarea {
    display: block;
    width: 100%;
    height: 80px;
    border: none;
    border-bottom: 2px solid #808080;
    padding: 0;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #808080;
}
.form .svg_position {
    position: absolute;
    top: 0;
    right: 0;
}
.send_button {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 20px;
    color: #141414;
    background-color: transparent;
    border: 2px solid #141414;
    border-radius: 30px;
    margin-top: 40px;
    padding: 0;
    width: 138px;
    height: 60px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    -ms-transition: all .2s ease;
}
.upper-space {
    margin-top: 40px;
}
#contact_sec {
    padding-bottom: 100px;
    margin-top: -7px;
    background: #F7F6F4;
}
.contact_second_section h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #141414;
}
.contact_second_section p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 40px;
    margin-bottom: 60px;
}
.form_field:focus-visible,
.message_textarea:focus-visible {
    outline: none;
}
.contact_img:before {
    content: "";
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.button_design  {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.button_design:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #c02723;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: -1;
}
.button_design:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    z-index: -2;
}
.button_design:hover:before {
    width: 100%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.button_design:hover{
    color: white;
}
#detail_section {
    margin-top: 100px;
    margin-bottom: 210px;
}
.detail_row {
    margin: 0 -15px;
}
.detail_content {
    margin-left: 40px;
}
.detail_title h4 {
    font-weight: 600;
    font-size: 20px;
    font-family: 'Poppins';
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.detail_title_1 {
    color: #c02723;
}
.detail_title_2 {
    color: #706DF9;
}
.detail_title_3 {
    color: #2BF06E;
}
.detail_contact_number {
    margin-top: 20px;
}
.detail_contact_number h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #141414;
}
.detail_contact_number h5 span {
    font-weight: 400;
    color: #808080;
    cursor: pointer;
}
.mob_no:hover a,
.con_email:hover a {
    color: #c02723;
}
.detail_contact_number p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;

    color: #808080;
}
.detail_contact_number h5 span a{
    text-decoration: none;
    color: #808080;
}
.detail_contact_number h6 span:hover {
    color: #000000;
}
.detail_para p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}
.detail_icon {
    height: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
}
.detail_icon:before {
    content: "";
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: -1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.detail_icon_1:before {
    background-color: #F4DBD2;
}
.detail_icon_2:before {
    background-color: #CDCDF4;
}
.detail_icon_3:before {
    background-color: #E3F4E9;
}
.detail_icon:hover:before {
    top: 0;
    left: 0;
}

/************************ 19 Subscibe Section ***************************/
.subscribe_heading h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: #141414;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-style: normal;
}
.subscribe_form_field {
    display: block;
    color: #ffffff;
    background-color: transparent;
    border-bottom: 2px solid #ffffff;
    width: 350px;
}
.subscribe_email_svg {
    position: absolute;
    top: 0;
    right: 0;
}
.contact_top {
    padding-top: 80px;
    padding-bottom: 100px;
}
.send_button {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 20px;
    color: #141414;
    margin-top: 40px;
    background-color: transparent;
    border: 2px solid #141414;
    border-radius: 30px;
    font-family: 'Poppins';
    padding: 0;
    width: 138px;
    height: 60px;
    text-transform: uppercase;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
}
.padding {
    position: relative;
    padding: 60px;
}
.subscribe_form_email {
    float: left;
}
.subscribe_para p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    margin-top: 16px;
}
.subscribe_form_field::placeholder {
    color: #ffffff;
}
.subscribe_form_field::-webkit-input-placeholder {
    color: #ffffff;
}
.subscribe_form_field::-moz-placeholder {
    color: #ffffff;
}
.subscribe_form_field:-ms-input-placeholder {
    color: #ffffff;
}
#subscribe_sec {
    margin-bottom: -110px;
}
.subscribe_form {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
}
.subscribe_full_sec {
    background-image: url(../../assets/images/subscribe/contact-overlay.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    max-width: 100%;
}
.subscribe_overlay{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(253 133 88 / 80%);
}
.subscribe_email_svg path {
    fill: white;
}
.button_design1  {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.button_design1:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    z-index: -1;
}
.button_design1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.button_design1:hover:before {
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.button_design1:hover{
    color: black;
}

/************************ 20 Footer Section ***************************/
.footer_line {
    margin-top: 160px;
}
.footer_divider {
    margin: 0;
    color: #808080;
    background-color: #808080;
    width: 570px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}
.footer_divider:before {
    content: "";
    width: 1px;
    height: 100px;
    color: #808080;
    background-color: #808080;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.footer_heading h4 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    font-family: 'Poppins';
}
.footer_heading h4 a:hover{
    color: #c02723;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}
.footer_heading h4 a {
    color: #ffffff;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
#footer_section {
 background: #141414;
 padding-bottom: 100px;
 padding-top: 210px;
}
.social_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #808080;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.footer_social_icon {
    margin: 60px 0;
    position: relative;
}
.footer_copyright p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    text-align: center;
}
.footer_copyright p:hover{
    color: #c02723;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.social_icon:after {
    content: "";
    display: block;
    width: 90%;
    height: 90%;
    top: -110%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background-color: #c02723;
    border-radius: 50%;
}
.social_icon:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.social_icon:hover:after {
    top: 5%;
    transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    z-index: -1;
}
.social_icon:hover svg path {
    fill: white;
}

/****************************** 21 Scroll Bottom to Top Start ***********************/
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 50px;
    width: 50px;
    cursor: pointer; 
    animation: scrolltop 2s infinite;
    -webkit-animation: scrolltop 2s infinite; 
    animation: scrolltop 2s infinite;
    border-radius: 50%;
    display: none;
}
.scroll-top::after {
    position: absolute;
    content: "\f062";
    font-family: 'FontAwesome';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #c02723;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
}
.scroll-top.active {
   opacity: 1;
   -moz-opacity: 1;
   -webkit-opacity: 1;
   visibility: visible;
   -webkit-transform: translateY(0);
   -ms-transform: translateY(0);
   transform: translateY(0);
}
.scroll-top svg.border-circle path {
    stroke: #c02723;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.scroll-top svg path {
    fill: none;
}
.scroll-top:hover {
 background: #c02723;
 transition: 0.3s;
 -webkit-transition: 0.3s;
 -o-transition: 0.3s;

}
.scroll-top:hover:after {
    color: white;
}

/****************************** 22 News Modal Start ***********************/
.Categories_sec li:hover a,
.blog-tags a:hover{
    color: #c02723;
}
.social-icon-style2 li a:hover {
    color: #c02723;
}
.news_btn_close,
.service_btn_close,
.portfolio_btn_close,
.price_btn_close{
 width: 40px;
 height: 40px;
 background-color: white;
 border: 2px solid #000000;
 border-radius: 10px;
 padding: 0;
 opacity: 1;
 z-index: 1;
 position: absolute;
 right: 10px;
 top: 10px;
 display: flex;
 display: -webkit-box;
 display: -moz-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 align-items: center;
 -webkit-box-align: center;
 -webkit-align-items: center;
 -ms-flex-align: center;
 justify-content: center;
 -webkit-box-pack: center;
 -moz-box-pack: center;
 -ms-flex-pack: center;
 -webkit-justify-content: center;
 transition: all .5s ease;
 -webkit-transition: all .5s ease;
 -moz-transition: all .5s ease;
 -o-transition: all .5s ease;
 -ms-transition: all .5s ease;
}
.service_btn_close svg path,
.portfolio_btn_close svg path,
.news_btn_close svg path,
.price_btn_close svg path {
    fill: black;
}
.price_btn_close:hover, .service_btn_close:hover, .news_btn_close:hover, .portfolio_btn_close:hover {
    border-radius: 100px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}
.news-tag {
    position: absolute;
    bottom: 6%;
    right: 6%;
    background-color:#c02723;
    padding: 10px 19px;
    color: #fff;
    display: inline-block;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
}
.entry-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin:0 ;
    list-style: none;
    border-bottom: 1px solid #efefef;
    padding: 8px 0;
    position: relative;
    font-weight: 600;
    font-family: 'Poppins';
}
.text-primary {
    color:#c02723 !important;
}
.blog-author-box {
    overflow: hidden;
    border-radius: 10px;
    padding: 40px 40px 40px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    margin-top: 40px;
}
.leave_commemt_sec {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
}
.butn {
    color: #fff;
    font-family: 'Inter';
    background-color: #c02723;
    padding: 14px 26px 12px !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}
span.txt {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-transform: capitalize;
}
.leave_btn:hover,
.butn1:hover {
    background: black;
    color: white;
}
a.butn1 {
    text-decoration: none;
}
.butn1 {
    color: #fff;
    font-family: 'Inter';
    background-color:#c02723;
    padding: 14px 26px 12px !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 30px;
}
.widget {
    position: relative;
    display: block;
}
.section-title01 .sm-title {
    position: relative;
    font-weight: 500;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
    padding-left: 50px;
    color:#c02723;
    text-transform: uppercase;
    z-index: 9;
    font-family: 'Poppins';
}
.section-title01 .sm-title:before {
    content: "";
    height: 1px;
    width: 35px;
    position: absolute;
    background: #c02723;
    top: 50%;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-animation: lineanimate 5s linear infinite;
    animation: lineanimate 5s linear infinite;
}
.input-group {
 position: relative;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-align: stretch;
 -ms-flex-align: stretch;
 align-items: stretch;
 width: 100%;
 font-family: 'Poppins';
}
.Categories_sec{
    list-style-type: none;
    padding: 0;
}
.Categories_sec li a{
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
.news_second_section_full {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    padding: 30px;
}
ul.Categories_sec li {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #dee2e6;
}
.blog-tags a {
    background-color: transparent;
    padding: 9px 14px;
    margin: 10px 0;
    display: block;
    vertical-align: top;
    border: 1px solid #dee2e6;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
.entry-meta a {
    text-decoration: none;
    color: black;
}
.social-icon-style2 {
    display: inline-block;
    padding-left: 10px;
    margin-top: 20px;
    list-style: none;
}
.button-box{
    margin-top: 20px;
}
.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
}
.social-icon-style2 li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    text-align: center;
    color: #808080;
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 35px;
    height: 50px;
    width: 50px;
    text-decoration: none;
    border-radius: 50%;
}
.fab{
    font-size: 24px;
}
a.butn{
    text-decoration: none;
}
.social-icon-style2 li a:hover .fab {
    color: white;
}
.social-icon-style2 li a:hover {
    background: #c02723;
}
.nees-popup_sec{
    margin-top: 30px;
}
.news_popup_detalis h2 {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    margin-top: 20px;
}
.news_txt1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}
.news_txt2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}
.news-popup_sec1 {
    margin-top: 40px;
}
p.news_txt3 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}
.name {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    margin-top: 20px;
}
.text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 20px;
}
h3.leave_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    color: #808080;
}
form.new_popup_form {
    margin-top: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form_txt {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.leave_btn{
    background-color:#c02723;
    padding: 14px 26px 12px !important;
    color: white;
    border-radius: 30px;
}
.news_modal_body{
    padding: 80px 30px 30px 30px
}

/****************************** 23 Services Modal Start ***********************/
.service_modal_body{
    padding: 80px 30px 30px 30px
}
.service-details-help h5:hover span a {
    color: #c02723;
}
.help-icon i.fa-regular.fa-phone:hover {
    color: #c02723;
}
.modal {
    background: rgba(20, 20, 20, 0.7);
    padding: 40px 0;
}
.cat-mt{
    margin-top: 30px;
}
.service-details-help {
    position: relative;
    display: block;
    padding: 57px 55px 50px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.07);

    border-radius: 15px;
    overflow: hidden;
    width: 500px;
}
.help-icon {
    height: 60px;
    width: 60px;
    background-color: #191825;
    color: #fff;
    font-size: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;

}
.help-title {
    line-height: 40px;
    margin-bottom: 10px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.1em;
}
i.fa-regular.fa-phone {
    font-weight: 800;
    font-size: 30px;
    font-family: 'Font Awesome\ 5 Free';
}
h3.cre_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}
.sevices-pop-details p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}
.services-pop-details1 {
    margin-top: 40px;
}
ul.features {
    margin-top: 10px;
}
.services_overview_sec{
    margin-top: 40px;
}
h3.boost {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
}
p.ipsum_txt {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
ul.features li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
.services_overview_sec h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
}
.services_overview_sec p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 15px;
}
.service-details-help h5 {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 600;
}
.service-details-help span a {
    color: black;
    text-decoration: none;
}
.Services_pop_btn {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
    border-radius: 30px;
    padding: 15px 35px;
    margin-top: 20px;
    border:1px solid;
    background: white;
}
.Services_pop_btn:hover {
    background: #c02723;
}
.text-center img:hover,
.porfolio_popup_img_sec img:hover,
.portfolio_img_sec_pop img:hover,
.popup_img_sec img:hover,
.news-popup_sec1 img:hover {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}
.sevices_widget {
   position: relative;
   background: #eef7f8;
   border-radius: 10px;
   padding: 46px 48px 48px;
   margin: 0 0 60px;
}
.servi_elements {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}
.iconBox08 i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 41px;
    line-height: 36px;
    color: #00c0ff;
}
.servi_title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 40px;
}
.ser_details {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
}
.services_overview_sec h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}
.result_txt {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    text-transform: capitalize;
    margin-top: 30px;
}
.counterBox h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    color: #141414;
}
.counterBox h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #141414;
    margin-top: 10px;
}
i.orbito-set-square {
    font-family: 'Orbito' !important;
    font-size: 50px;
    font-weight: 800;
}
.iconBox08 i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 41px;
    line-height: 36px;
    color: #00c0ff;
}
.widgetTitle{
    font-size: 24px;
    line-height: 30px;
    font-family: 'Poppins';
    position: relative;
    padding: 0 0 0 30px;
    margin: 0 0 32px;
}
.widgetTitle:before {
    content: '';
    width: 18px;
    height: 18px;
    border: 3px solid #c02723;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 3px;
}
.serviceMenu ul li a {
    font-family: 'Poppins';
    display: block;
    font-size: 18px;
    line-height: 28px;
    padding: 17px 30px 15px;
    color: #141414;
    border: 1px solid #dee2e6;
    text-decoration: none;
}
.serviceMenu ul li a:hover {
    background-color: #c02723;
    color: white;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.serviceMenu ul {
    margin: 0;
    padding: 0;
}
.serviceMenu ul li {
    list-style-type: none;
    margin: 0 0 6px;
}
.current_menu{
    background-color: #c02723;
}
.current_menu a{
    color: white !important;
}
.ser_popup_form_txt {
    display: block;
    font-family: 'Poppins';
    width: 100%;
    height: 60px;
    background: #FFF;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    line-height: 30px;
    color: #868b9b;
    padding: 0 24px;
    margin: 0 0 18px;
}
.ser_textarea {
    height: 160px;
    resize: none;
    padding: 15px 24px;
    border: navajowhite;
    width: 100%;
    font-size: 18px;
    line-height: 30px;
    font-family: 'Poppins';
}
.services_form_popup {
    color: #fff;
    font-family: 'Inter';
    background-color: #c02723;
    padding: 16px 30px;
    font-size: 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-radius: 30px;
    border: navajowhite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
.services_form_popup:hover {
    background: #141414;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.helpsection h3 {
    font-size: 36px;
    font-family: 'Poppins';
    color: #141414;
    line-height: 1;
    margin: 0 0 33px;
}
.helpsection p {
  font-family: 'Inter';
  font-size: 21px;
  line-height: 33px;
  color: #808080;
  margin: 0 0 20px;
}
i.fa-solid.fa-phone {
    background: #c02723;
    color: #FFF;
    height: 60px;
    width: 60px;
    font-size: 21px;
    line-height: 60px;
}
.headerCall {
    position: relative;
    padding: 0px 0 0 70px;
}
.headerCall i {
    position: absolute;
    left: 0;
    top: 0;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    background: #eef7f8;
    color: #343c55;
    font-size: 18px;
}
.headerCall h4 {
    font-size: 18px;
    font-family: 'Poppins';
    color: #141414;
}
.headerCall h3 a {
    font-size: 20px;
    font-family: 'Poppins';
    text-decoration: none;
    color: #141414;
}
.companyProfileBtns{
    display: grid !important;
}
a.Ser_popup_btn {
    width: 100%;
    height: 60px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #141414;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
}
a.Ser_popup_btn:hover {
    background-color: #c02723;
    color: white;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.counterBox {
    position: relative;
    -webkit-box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.07);
    border-radius: 5px;
    text-align: center;
    padding:20px;
}
.servi_img_popup{
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-column-gap: 20px;
   -moz-column-gap: 20px;
   column-gap: 20px;
   margin-top: 20px;

}
.ser_pop_img1:hover,
.ser_pop_img2:hover {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
}
.mt-ser_pop1,
.mt-ser_pop2,
.mt-ser_pop3,
.mt-ser_pop4{
    margin-top: 10px;
}
.popup_counter_ser{
    margin-top: 20px;
}
.sevices_widget:last-child {
    margin: 0;
}

/****************************** 24 Portfolio Modal Start***********************/
.overlay-box {
 position: absolute;
 left: 40px;
 top: 0;
 height: 100%;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}
a.fa.fa:hover {
    color: #c02723;
}
.content {
 padding: 30px;
 max-width: 440px;
 width: 100%;
 border-radius: 20px;
 background-color: white;
 font-family: 'Inter';
 font-weight: 400;
 font-size: 18px;
 line-height: 30px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 color: #808080;
}
.content ul {
    margin: 0 !important;
    padding: 0;
    padding-left: 18px;
}
.overlay-box ul li a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    display: inline-block;
    font-size: var(--font-14);
    color: var(--color-fourtyeight);
    margin-left: var(--margin-left-5);
    border: 1px solid var(--color-fiftytwo);
    text-decoration: none;
}
.fa {
    font-family: 'FontAwesome';
}
.portfolio_popup_second h3 {
   font-family: 'Poppins';
   font-weight: 700;
   font-size: 38px;
   line-height: 40px;
   margin-top: 20px;
}
.portfolio_popup_second p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #808080;
    margin-top: 10px;
}
.portfolio_popup_third h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 36px;
    text-transform: capitalize;
}
ul.growth_details li {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #808080;
    margin-top: 8px;
}
.portfolio_img_sec_pop {
    margin-top: 40px;
}
.portfolio_popup_third {
    margin-top: 40px;
}
ul.growth_details {
    margin-top: 10px;
}
.portfolio_modal_body {
    padding: 80px 30px 30px 30px
}

/****************************** 25 Price Modal Start***********************/
.price_modal_dialog {
    width: 100%;
    max-width: 800px;
    height: 100%;
    padding: 0 20px !important;
}
.modal-fullscreen 
.price_modal_content, .modal-fullscreen .service_modal_content, .modal-fullscreen .news_modal_content, .modal-fullscreen .portfolio_modal_content {
    border-radius: 20px;
}
.price_modal_body {
    padding: 40px;
}
.price_modal_heading h3{
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 38px;
    line-height: 40px;
    margin-top: 20px;
    text-transform: capitalize;
}
#price_form {
    margin-top: 60px;
}
.price_upper_space {
    margin-top: 30px;
}
.price_label {
   font-family: 'Poppins';
   font-weight: 600;
   font-size: 22px;
   line-height: 22px;
   display: block;
   color: #000000;
   text-transform: capitalize;
}
.price_field {
    background-color: #ffffff;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    width: 100%;
    height: 54px;
    font-size: 18px;
    margin-top: 15px;
    padding: 0 20px;
    font-family: 'Poppins';
}
.custom-select {
    background-image: url(../images/price/dropdown-arrow.svg);
    background-position: 96% center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.price_plan .price_field,
.text_form
{
    color: #808080;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
}
.price_textarea {
    width: 100%;
    height: 100px;
    margin-top: 15px;
    padding: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Poppins';
}
.send_message_button {
 font-weight: 600;
 font-size: 20px;
 line-height: 20px;
 color: #ffffff;
 background-color: #000000;
 border: none;
 border-radius: 30px;
 font-family: 'Poppins';
 width: 230px;
 height: 60px;
 margin-top: 50px;
 padding: 0;
 text-transform: capitalize;
 transition: all .3s ease;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 margin-left: auto;
 margin-right: auto;
 -webkit-transition: all .3s ease;
 -moz-transition: all .3s ease;
 -o-transition: all .3s ease;
 -ms-transition: all .3s ease;
}
 .nav-menu {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      color: #ffffff;
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: bold;
      cursor: pointer;
    }

    .donate-btn {
      background-color: #2563eb;
      color: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background 0.3s;
    }

    .donate-btn:hover {
      background-color: #1d4ed8;
    }

    /* Modal Overlay */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 1000;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Modal Container */
    .modal-container {
      background: #ffffff;
      padding: 2rem;
      border-radius: 8px;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      font-family: Arial, sans-serif;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      color: #64748b;
    }

    .modal-header h2 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      color: #0f172a;
    }

    /* Notice Box for E-Transfer Details */
    .etransfer-info {
      background-color: #eff6ff;
      border-left: 4px solid #2563eb;
      padding: 0.75rem;
      margin-bottom: 1.25rem;
      font-size: 0.9rem;
      color: #1e3a8a;
    }

    .etransfer-info strong {
      display: block;
      margin-top: 0.25rem;
      color: #0f172a;
      word-break: break-all;
    }

    /* Form Styling */
    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.4rem;
      font-weight: bold;
      font-size: 0.875rem;
      color: #334155;
    }

    .form-group input {
      width: 100%;
      padding: 0.6rem;
      border: 1px solid #cbd5e1;
      border-radius: 4px;
      box-sizing: border-box;
      font-size: 1rem;
    }

    .form-group input:focus {
      outline: none;
      border-color: #2563eb;
    }

    .submit-btn {
      width: 100%;
      background-color: #16a34a;
      color: white;
      border: none;
      padding: 0.75rem;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    .submit-btn:hover {
      background-color: #15803d;
    }
    
    
/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.sub-heading {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 2.2rem;
  color: #0f172a;
  margin: 8px 0;
}

.description {
  color: #64748b;
  font-size: 1rem;
}

/* Responsive Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.feature-card.high-priority {
  border-top: 4px solid #ef4444;
}

.card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #fef2f2;
  color: #ef4444;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 700;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 8px;
  padding-right: 80px;
}

.card-preview {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.view-btn {
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

.view-btn:hover {
  background-color: #1d4ed8;
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #64748b;
  cursor: pointer;
}

.modal-header {
  margin-bottom: 16px;
}

.modal-tag {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-header h2 {
  font-size: 1.35rem;
  color: #0f172a;
  margin-top: 4px;
}

/* Modal Content Typography & Formatting */
.content-text p {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.section-block {
  margin-bottom: 16px;
}

.section-block strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 6px;
}

.detail-list {
  padding-left: 20px;
  margin-bottom: 12px;
}

.detail-list li {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 6px;
}

.modal-footer {
  margin-top: 24px;
  text-align: right;
}

.action-btn {
  background-color: #0f172a;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.action-btn:hover {
  background-color: #1e293b;
}

@media (max-width: 640px) {
  body {
    padding: 20px 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Community Involvement Section Styling */
.community-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.community-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 45px auto;
}

.community-tag {
  color: #2563eb;
  background-color: #eff6ff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.community-heading {
  font-size: 2.1rem;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.community-subtext {
  color: #64748b;
  font-size: 1rem;
}

/* Responsive Layout Grid */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual Feature Cards */
.community-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* Icon Box */
.card-icon-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.card-content {
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Stats and Progress Bar */
.stat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.stat-value {
  font-size: 0.95rem;
  color: #2563eb;
  font-weight: 700;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 10px;
}

/* Highlighted Card for COVID-19 Advocacy */
.community-card.highlight-card {
  grid-column: 1 / -1;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.community-card.highlight-card .stat-value {
  color: #16a34a;
}

.community-card.highlight-card .progress-fill {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* Mobile Friendly */
@media (max-width: 640px) {
  .community-heading {
    font-size: 1.6rem;
  }
  
  .community-card {
    flex-direction: column;
  }
}


/* About Us Section Base Styles */
.about-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  color: #1e293b;
}

.about-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.about-badge {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.slogan-title {
  font-size: 2.4rem;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
}

/* Bio & Quote 2-Column Grid */
.about-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  align-items: center;
}

.bio-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.bio-heading {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 16px;
  font-weight: 700;
}

.bio-card p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
}

.quote-card {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  padding: 36px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 12px 24px -5px rgba(15, 23, 42, 0.25);
}

.quote-icon {
  font-size: 4rem;
  color: #3b82f6;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -20px;
}

.quote-card blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.quote-card cite {
  display: block;
  font-size: 0.95rem;
  color: #93c5fd;
  font-weight: 600;
  font-style: normal;
}

/* 3 Core Pillars Cards */
.pillars-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-title {
  text-align: center;
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 36px;
  font-weight: 700;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 25px -5px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.pillar-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s ease;
  font-family: system-ui, -apple-system, sans-serif;
}

.pillar-card:hover .pillar-number {
  color: #2563eb;
}

.pillar-content h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}

.pillar-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Mobile Layout */
@media (max-width: 900px) {
  .about-body-grid {
    grid-template-columns: 1fr;
  }

  .slogan-title {
    font-size: 1.8rem;
  }
  
  .bio-card, .quote-card {
    padding: 24px;
  }
}

/* Gallery Section Styling */
.gallery-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.gallery-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.gallery-badge {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.gallery-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #64748b;
  font-size: 1rem;
}

/* Card & Image Wrapper */
.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8fafc;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 260px; /* Uniform Height for Clean Alignment */
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fit without stretching */
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

/* Hover Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.gallery-card:hover .overlay-icon {
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-title {
    font-size: 1.75rem;
  }

  .gallery-img-wrapper {
    height: 220px;
  }
}

/* News Section Styling */
.news-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.news-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.news-badge {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.news-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.news-subtitle {
  color: #64748b;
  font-size: 1rem;
}

/* News Card Base Style */
.news-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px -10px rgba(37, 99, 235, 0.15);
  border-color: #93c5fd;
}

/* Image Container */
.news-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img-box img {
  transform: scale(1.06);
}

.category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 12px;
}

/* Card Body Content */
.news-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.news-meta {
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.news-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Read More Button */
.news-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.read-more-btn {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.read-more-btn span {
  transition: transform 0.2s ease;
}

.read-more-btn:hover {
  color: #1d4ed8;
}

.read-more-btn:hover span {
  transform: translateX(5px);
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .news-section {
    padding: 50px 0;
  }

  .news-title {
    font-size: 1.75rem;
  }

  .news-img-box {
    height: 200px;
  }
}

/* Footer Section Styling */
.site-footer {
  background: linear-gradient(135deg, #0b132b 0%, #0f172a 60%, #1e293b 100%);
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-top {
  padding: 80px 0 50px 0;
  border-bottom: 1px solid #1e293b;
}

/* Widgets */
.footer-brand {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-brand span {
  color: #2563eb;
}

.footer-desc {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.widget-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.widget-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: #2563eb;
  margin-top: 8px;
}

/* Navigation Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Social Links */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background-color: #2563eb;
  transform: translateY(-4px);
}

/* Newsletter Form */
.footer-newsletter .input-group {
  background: #1e293b;
  border-radius: 30px;
  padding: 4px;
}

.footer-newsletter .form-control {
  background: transparent;
  border: none;
  color: #ffffff;
  padding-left: 16px;
  box-shadow: none;
}

.footer-newsletter .form-control::placeholder {
  color: #64748b;
}

.footer-newsletter .btn-primary {
  background-color: #2563eb;
  border: none;
  border-radius: 25px !important;
  padding: 8px 22px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.footer-newsletter .btn-primary:hover {
  background-color: #1d4ed8;
}

.footer-contact-info {
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-contact-info p {
  margin-bottom: 6px;
  color: #cbd5e1;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 24px 0;
  background-color: #0b1120;
}

.copyright-text {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0 30px 0;
  }

  .footer-legal-links {
    justify-content: center;
    margin-top: 10px;
  }
}
