@charset "utf-8";
/* CSS Document */
/* Author : Binod Raj Dhami */

:root{
    --theme-primary-color: #ffffff;
    --theme-secondary-color: #000000;
    --theme-red-color: #FF0000;
    --theme-text-color: #616670;
    --theme-background-color: #F5F4FA;
    --theme-font-rajdhani: "Rajdhani", sans-serif;
    --theme-font-rubik: "Rubik", sans-serif;
    --transition: all ease-in-out 0.3s;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================================== Reset specific tags further */
html, body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, li,
figure, blockquote,
span, a {
    margin: 0;
    padding: 0;
    line-height: initial;
}

a{
    display: inline-block;
    text-decoration: none;
    line-height: initial;
}

span{
    display: inline-block;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--theme-font-rajdhani);
}

/* ================================================== Apply the font globally */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-rubik);
    background: var(--theme-primary-color);
}


/* ================================================== Go To Top Section */
#back-top { 
    display: block; 
    position: fixed; 
    bottom: 10px; 
    right: 15px; 
    text-align: center; 
    z-index: 9; 
}

#back-top a { 
    display: block; 
    text-decoration: none;  
}

#back-top a .fa-solid{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; 
    height: 50px; 
    font-size: 14px; 
    border-radius: 5px; 
    opacity: 1; 
    color: var(--theme-primary-color); 
    background: var(--theme-red-color);
    transition: var(--transition);
}

#back-top a .fa-solid:hover { 
  background: var(--theme-secondary-color); 
  color: var(--theme-primary-color); 
  transform: scale(1.05, 1.05);  
}

.wrapper{
    position: relative;
    overflow: hidden;
}

/* ================================================== Header Section */
.site-header{
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    margin-top: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-in-out;
}


@keyframes slideDown {
    from {
        transform: translateY(-100px);
    }
    to {
        transform: translateY(0);
    }
}

.site-header .container{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== Site Header Logo ========== */
.site-header  .site-header-logo{
    margin-right: auto;
}

/* ========== Site Header Nav ========== */
.site-header  .site-header-nav{
    margin: 0 auto;
}

#mega-menu-wrap-header-menu{
    background: transparent;
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link{
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
    transition: var(--transition);
}

#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item > a.mega-menu-link:hover,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link{
    color: var(--theme-red-color);
    background: transparent;
    font-weight: 500;
}

/* ========== Site Header Contact ========== */
.site-header  .site-header-contact{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-header-logo img{
    width: 200px;
    height: auto;
}

.site-header  .site-header-contact .site-header-contact-icon .fa-solid{
    color: var(--theme-red-color);
    font-size: 30px;
}

.site-header .site-header-contact .site-header-contact-link{
    display: flex;
    flex-direction: column;
}

.site-header .site-header-contact .site-header-contact-link span{
    display: inline-block;
    line-height: initial;
    font-size: 20px;
    font-weight: 500;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
}

.site-header .site-header-contact .site-header-contact-link a{
    display: inline-block;
    line-height: initial;
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
}

/* ================================================== Banner Section */
.banner{
    position: relative;
    background: url('../images/banner-bg-image.jpg') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, #FFFFFF 100%);
}

.banner-content{
    padding: 200px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    gap: 50px;
}

.banner-content-title{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-content-text{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 90px;
    font-weight: 600;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
}

.banner-content-text a{
    position: relative;
    display: inline-block;
    margin: 0 50px;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 30px;
    overflow: hidden;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
    transition: var(--transition);
    z-index: 1;
}

.banner-content-text a::before{
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 0;
    height: 100%;
    background: var(--theme-secondary-color);
    z-index: -1;
    transition: var(--transition);
}

.banner-content-text a .fa-solid{
    font-size: 18px;
}

.banner-content-text a:hover{
    transform: scale(1.2);
    color: var(--theme-primary-color);
}

.banner-content-text a:hover::before{
    width: 100%;
}

.banner-content-goto-bottom a{
    position: relative;
    display: inline-block;
    padding: 50px 15px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 18px;
    overflow: hidden;
    z-index: 1;
    color: var(--theme-primary-color);
    background: var(--theme-red-color);
    font-family: var(--theme-font-rajdhani);
    transition: var(--transition);
}

.banner-content-goto-bottom a::before{
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 0;
    background: var(--theme-secondary-color);
    z-index: -1;
    transition: var(--transition);
}

.banner-content-goto-bottom a:hover{
    transform: scale(1.1);
    color: var(--theme-primary-color);
}

.banner-content-goto-bottom a:hover::before{
    height: 100%;
}

/* ================================================== Common Section */
.section-title{
    margin-bottom: 30px;
}

.section-title .section-heading-subtitle{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--theme-red-color);
    font-family: var(--theme-font-rajdhani);
}

.section-title .section-heading-title{
    line-height: 48px;
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
}

/* ================================================== Welcome Section */
.welcome{
    padding: 100px 0;
    background: var(--theme-primary-color);
}

.welcome .row{
    align-items: center;
}

/* ========== Welcome Thumbnails ========== */
.welcome-thumbnails-center{
    position: relative;
    background: var(--theme-primary-color);
    height: 640px;
}

.welcome-thumbnails-center-top-left{
    position: absolute;
    bottom: calc(50% + 10px);
    right: calc(50% + 10px);
    border-radius: 80px 0 0 0;
    background: var(--theme-secondary-color);
    border-top: var(--theme-red-color) solid 15px;
    border-left: var(--theme-red-color) solid 15px;
    width: 250px;
    height: 175px;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.welcome-thumbnails-center-top-left::before{
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    width: 15px;
    height: 15px;
    z-index: -1;
    background: var(--theme-primary-color);
}

.welcome-thumbnails-center-top-left::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 15px;
    height: 15px;
    z-index: -1;
    background: var(--theme-primary-color);
}

.welcome-thumbnails-center-top-right{
    position: absolute;
    bottom: calc(50% + 10px);
    left: calc(50% + 10px);
    border-radius: 90px  15px;
    background: transparent;
    width: 280px;
    height: 300px;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.welcome-thumbnails-center-bottom-left{
    position: absolute;
    top: calc(50% + 10px);
    right: calc(50% + 10px);
    border-radius: 70px  15px;
    background: transparent;
    width: 235px;
    height: 235px;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.welcome-thumbnails-center-bottom-right{
    position: absolute;
    top: calc(50% + 10px);
    left: calc(50% + 10px);
    border-radius: 90px  15px;
    background: transparent;
    width: 270px;
    height: 270px;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.welcome-thumbnails-center-top-left img,
.welcome-thumbnails-center-top-right img,
.welcome-thumbnails-center-bottom-left img,
.welcome-thumbnails-center-bottom-right img{
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.welcome-thumbnails-center-top-left:hover,
.welcome-thumbnails-center-top-right:hover,
.welcome-thumbnails-center-bottom-left:hover,
.welcome-thumbnails-center-bottom-right:hover{
    transform: scale(1.1);
}

.welcome-thumbnails-center-top-left:hover img,
.welcome-thumbnails-center-top-right:hover img,
.welcome-thumbnails-center-bottom-left:hover img,
.welcome-thumbnails-center-bottom-right:hover img{
    transform: scale(1.5) rotate(15deg);
}

.welcome-thumbnails-center-circle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: var(--theme-red-color);
    border: var(--theme-primary-color) solid 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    z-index: 99;
    transition: var(--transition);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.welcome-thumbnails-center-circle .fa-solid{
    color: var(--theme-primary-color);
    font-size: 30px;
    font-weight: 700;
    transition: var(--transition);
}

.welcome-thumbnails-center-circle:hover{
    transform: translate(-50%,-50%) scale(1.5) rotate(360deg);
}

/* ========== Welcome Content ========== */
.welcome-content-section-text{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--theme-text-color);
    font-family: var(--theme-font-rubik);
}

.welcome-content-section-buttons{
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.welcome-content-section-button{
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 30px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
    background: var(--theme-primary-color);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border: var(--theme-red-color) solid 1px;
    border-radius: 5px;
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.welcome-content-section-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--theme-red-color);
    z-index: -1;
    transition: var(--transition);
}

.welcome-content-section-button .fa-solid{
    font-size: 18px;
}

.welcome-content-section-button:hover{
    color: var(--theme-primary-color);
}

.welcome-content-section-button:hover::before{
    width: 100%;
}

.welcome-content-section-link{
    display: inline-block;
    margin-top: 15px;
}

.welcome-content-section-link a{
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 30px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
    background: var(--theme-secondary-color);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.welcome-content-section-link a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--theme-red-color);
    z-index: -1;
    transition: var(--transition);
}

.welcome-content-section-link a .fa-solid{
    font-size: 12px;
}

.welcome-content-section-link a:hover{
    color: var(--theme-primary-color);
}

.welcome-content-section-link a:hover::before{
    width: 100%;
}

/* ================================================== Services Section */
.services{
    padding: 100px 0 150px;
    background: var(--theme-background-color);
}

.services .section-title{
    text-align: center;
    margin: 0 auto 100px;
    max-width: 600px;
}

.services-card{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: var(--transition);
    margin-bottom: 30px;
}

.services-card.services-card-odd{
    transform: translateY(30px);
}

.services-card.services-card-even{
    transform: translateY(-30px);
}

.services-card.services-card-odd:hover{
    transform: translateY(20px);
}

.services-card.services-card-even:hover{
    transform: translateY(-40px);
}

.services-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: var(--transition);
}

.services-card:hover::before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #FF0000 100%);
}

.services-card-thumbnail img{
    width: 100%;
    height: auto;
}

.services-card-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    z-index: 9;
}

.services-card-content-title{
    width: 100%;
    padding-bottom: 10px;
    border-bottom: var(--theme-primary-color) solid 1px;
}

.services-card-content-title a{
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
}

.services-card-content-text{
    margin: 20px 0;
    width: 100%;
}

.services-card-content-text p{
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rubik);
}

.services-card-content-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--theme-red-color);
}

.services-card-content-link a span{
    line-height: 12px;
}

.services-card-content-link a .fa-solid{
    font-size: 12px;
}

.services-card.services-card-odd:hover .services-card-content-link a,
.services-card.services-card-even:hover .services-card-content-link a{
    color: var(--theme-primary-color);
}


/* ================================================== Subscribe Section */
.podcast {
    position: relative;
    padding: 100px 0;
    background: url('../images/podcast-bg-image.jpg') no-repeat fixed center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.podcast::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.podcast .container{
    position: relative;
    z-index: 2;
}

.podcast .section-heading-subtitle {
    color: #ffd700;
}

.podcast .section-heading-title {
    color: var(--theme-primary-color);
}

.podcast .section-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
}

.podcast .section-content a {
    display: inline-block;
    padding: 20px 50px;
    background: var(--theme-primary-color);
    color: var(--theme-secondary-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.podcast .section-content a:hover {
    background-color: #ffcc00;
}

/* ================================================== Portfolios Section */
.portfolios{
    padding: 100px 0 150px;
    background: var(--theme-background-color);
}

.portfolios .section-title{
    text-align: center;
    margin-bottom: 50px;
}

.portfolios .nav-tabs{
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-bottom: none;
}

.portfolios .nav-tabs .nav-item .nav-link{
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    overflow: hidden;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
    transition: var(--transition);
    z-index: 1;
}

.portfolios .nav-tabs .nav-item .nav-link.active{
    background: var(--theme-secondary-color);
}

.portfolios .nav-tabs .nav-item .nav-link::before{
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 0;
    height: 100%;
    background: var(--theme-secondary-color);
    z-index: -1;
    transition: var(--transition);
}

.portfolios .nav-tabs .nav-item .nav-link .fa-solid{
    font-size: 14px;
}

.portfolios .nav-tabs .nav-item .nav-link:hover{
    transform: scale(1.2);
    color: var(--theme-primary-color);
    z-index: 9;
}

.portfolios .nav-tabs .nav-item .nav-link:hover::before{
    width: 100%;
}

.portfolio-card{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: var(--transition);
    margin-bottom: 30px;
}

.portfolio-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    transition: var(--transition);
}

.portfolio-card:hover::before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #FF0000 100%);
}

.portfolio-card-thumbnail img{
    width: 100%;
    height: auto;
}

.portfolio-card-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    z-index: 9;
}

.portfolio-card-content-title{
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: var(--theme-primary-color) solid 1px;
}

.portfolio-card-content-title a{
    font-size: 24px;
    font-weight: 600;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
}

.portfolio-card-content-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--theme-red-color);
}

.portfolio-card-content-link a span{
    line-height: 12px;
}

.portfolio-card-content-link a .fa-solid{
    font-size: 12px;
}


.portfolio-not-found{
    display: block;
    text-align: center;
}

.portfolio-not-found span{
    padding: 10px 15px;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    border-radius: 5px;
}

/* ================================================== News & Blogs Section */
.news-blog{
    padding: 100px 0;
    background: var(--theme-primary-color);
}

.news-blog .section-title{
    text-align: center;
    margin: 0 auto 50px;
    max-width: 900px;
}

.news-blog-card{
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: var(--transition);
}

.news-blog-card:hover{
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5);
}

.news-blog-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
}

.news-blog-card-thumbnail img{
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.news-blog-card:hover .news-blog-card-thumbnail img{
    transform: scale(1.5) rotate(15deg);
}

.news-blog-card-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
}

.news-blog-card-content-post-date{
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background: var(--theme-secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: auto;
    transition: var(--transition);
}

.news-blog-card:hover .news-blog-card-content-post-date{
    background: var(--theme-red-color);
}

.news-blog-card-content-post-date span{
    line-height: 24px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
}

.news-blog-card-content-author{
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.news-blog-card-content-author li .fa-solid{
    font-size: 12px;
    color: var(--theme-red-color);
}

.news-blog-card-content-author li span{
    display: inline-block;
    margin-left: 10px;
    font-weight: 400;
    font-size: 16px;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rubik);
}

.news-blog-card-content-title{
    margin: 15px 0 30px;
}

.news-blog-card-content-title a{
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary-color);
    font-family: var(--theme-font-rajdhani);
    transition: var(--transition);
}

.news-blog-card-content-title a:hover{
    color: var(--theme-red-color);
}

.news-blog-card-content-link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--theme-red-color);
    transition: var(--transition);
}

.news-blog-card-content-link a span{
    font-size: 16px;
    line-height: 12px;
}

.news-blog-card-content-link a .fa-solid{
    font-size: 12px;
    transition: var(--transition);
}

.news-blog-card:hover .news-blog-card-content-link a:hover{
    gap: 15px;
    color: var(--theme-red-color);
}

/* ================================================== Footer Section */
footer{
    background: var(--theme-background-color);
}

.footer-content{
    padding: 100px 0;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
}

.footer-content-block .footer-logo{
    margin-bottom: 30px;
    text-align: center;
}

.footer-content-block .footer-logo img{
    display: inline-block;
    width: 200px;
    height: auto;
}

.footer-content-block p{
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rubik);
    text-align: center;
}

.footer-social-link h4{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rajdhani);
    text-align: center;
}

.footer-social-link h4::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 200px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--theme-red-color);
}

.footer-social-link ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: none;
}

.footer-social-link ul li a .fa-brands{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    transition: var(--transition);
}

.footer-social-link ul li a .fa-brands:hover{
    background: var(--theme-secondary-color);
}

.footer-contact-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 70px;
}

.footer-contact-list li{
    padding: 20px 25px;
    border: var(--theme-secondary-color) solid 1px;
    border-radius: 50px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-contact-list li span{
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-secondary-color);
}

.footer-contact-list li span .fa-solid{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: var(--theme-red-color);
    color: var(--theme-primary-color);
    font-size: 16px;
}

.copyright{
    padding: 20px 0;
}

.copyright p{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rubik);
}

/* ======================================================================================== */
/* ======================================================================================== */
/* ================================================== Breadcrumb Section */
.page-banner{
    position: relative;
    padding: 200px 0 100px;
    background: url('../images/banner-bg-image.jpg') no-repeat top center;
    background-size: cover;
    z-index: 1;
}

.page-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, #FFFFFF 100%);
}


.page-breadcrumb h1{
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-red-color);
    font-family: var(--theme-font-rajdhani);
}

.page-breadcrumb a{
    font-size: 16px;
    color: var(--theme-red-color);
    font-family: var(--theme-font-rubik);
}

.page-breadcrumb span{
    font-size: 16px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rubik);
}

/* ================================================== Page Content Section */
.page-content{
    padding: 100px 0;
    background: var(--theme-primary-color);
}

.page-content .main-content .page-header .page-title{
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--theme-secondary-color);
    font-size: 30px;
    font-weight: 700;
    font-family: var(--theme-font-rajdhani);
    text-transform: uppercase;
}

.page-content .main-content .page-header .page-title::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme-red-color);
}

.page-description p{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rubik);
}

.page-description ul,
.page-description ol{
    margin-bottom: 30px;
}

.page-description li{
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--theme-secondary-color);
    font-family: var(--theme-font-rubik);
}

.page-description p a{
    color: var(--theme-red-color);
}



/* ================================================== Responsive */
/* Large */
@media (max-width: 1199px){
    

}

/* Medium */
@media (max-width: 991px){


}

/* Small */
@media (max-width: 767px){


}

/* Extra Small*/
@media (max-width: 574px){

}

/* Extra Small*/
@media (max-width: 460px){
    
}