@tailwind base;
@tailwind components;
@tailwind utilities;

/* Google font roboto and condensed roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body,
html {
    scroll-behavior: smooth;
}
body {
    --primaryColor: #302543;
    --secondaryColor: #fac82b;
    --condensedRoboto: "Roboto Condensed", sans-serif;
    --roboto: "Roboto", sans-serif;
    --poppins: "Poppins", sans-serif;
}

body {
    font-family: var(--poppins) !important;
}

.primary-color {
    color: #302543;
}

.secondary-color {
    color: #fac82b;
}

/* HEADER SECTION CSS  */
.header-banner {
    background-image: url("/images/frontend/header-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hover-line {
    background: linear-gradient(currentColor 0 0) bottom / var(--d, 0) 2px
        no-repeat;
    transition: 0.5s;
    color: #fff;
    padding-top: 10px;
}

.hover-line:hover {
    --d: 100%;
}

.nav-active {
    color: var(--secondaryColor);
    border-bottom: 2px solid var(--secondaryColor);
    padding-bottom: 5px;
}

.contact-me-btn {
    background-color: var(--primaryColor);
    color: var(--secondaryColor) !important;
    border-radius: 4px;
    padding: 5px 20px;
}

@media (max-width: 1023px) {
    .contact-me-btn {
        display: none !important;
    }
}

.name-title {
    font-family: var(--condensedRoboto);
    text-transform: uppercase;
    color: rgb(233, 232, 232);
    font-size: 72px !important;
    font-weight: 600;
    line-height: 46px;
}

.colored-letter {
    text-transform: uppercase;
    color: #cdb72d;
}

.name-sub-title {
    color: #cdb72d;
    font-family: var(--condensedRoboto);
    font-size: 44px;
    font-weight: 500;
}

@media (max-width: 1299px) {
    .name-title {
        font-size: 62px !important;
        line-height: 46px;
    }
}
@media (max-width: 1099px) {
    .name-title {
        font-size: 58px !important;
        line-height: 46px;
    }
}
@media (max-width: 992px) {
    .name-title {
        font-size: 52px !important;
        line-height: 46px;
    }
}
@media (max-width: 890px) {
    .name-title {
        font-size: 42px !important;
        line-height: 46px;
    }
}
@media (max-width: 767px) {
    .name-title {
        font-size: 35px !important;
        line-height: 46px;
    }
}
@media (max-width: 500px) {
    .name-title {
        font-size: 30px !important;
        line-height: 30px;
    }
}
@media (max-width: 470px) {
    .name-title {
        font-size: 24px !important;
        line-height: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
}
@media (min-width: 601px) and (max-width: 767px) {
    .name-sub-title {
        font-size: 32px;
    }
}
@media (min-width: 500px) and (max-width: 600px) {
    .name-sub-title {
        font-size: 28px;
    }
}
@media (min-width: 425px) and (max-width: 499px) {
    .name-sub-title {
        font-size: 26px;
    }
}
@media (min-width: 320px) and (max-width: 424px) {
    .name-sub-title {
        font-size: 19px;
    }
}

/* ABOUT ME SECTION CSS  */
.about-me-title {
    font-family: var(--poppins) !important;
    font-weight: 900 !important;
}

.read-more-styled-btn {
    color: #fff;
    background-color: var(--primaryColor);
    border-radius: 2px;
    border: 2px solid var(--secondaryColor);
    padding: 5px 20px;
    box-shadow: 4px 4px 0 var(--primaryColor);
}

/* SERVICES SOLUTIONS SECTION CSS  */
.services-solutions-bg {
    background-image: url("/images/frontend/pixel-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ORDER PROJECT SECTION CSS  */
.order-project-bg {
    background-image: url("/images/frontend/order-project-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* PORTFOLIO SECTION CSS  */
.portfolio-banner {
    background-image: url("/images/frontend/portfolio-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* FOOTER SECTION CSS */
.footer-bg {
    /* background-image: url('/images/frontend/footer-banner.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/* modal */
.customOverlay {
    background: rgba(26, 11, 52, 0.8);
}
.customModal {
    background: #10012c;
    border-radius: 10px;
    max-width: 1100px;
}

.react-responsive-modal-closeButton {
    display: none !important;
}

@media (min-width: 500px) and (max-width: 767px) {
    .customModal {
        max-width: 500px;
    }
}
/* @media (min-width:320px) and (max-width:499px) {
    .customModal {
      max-width: 400px;
    }

  } */
.styled-btn {
    margin-bottom: 30px;
}
.styled-btn:link,
.styled-btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all 0.2s;
    position: absolute;
}

.styled-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.styled-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: var(--primaryColor);
    color: #fff;
}

.styled-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}

.btn-white::after {
    background-color: var(--primaryColor);
}

.styled-btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* header bg css */

.context {
    /* width: 100%;
    position: absolute; */
    /* top:50vh; */
}

.context h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
}

.area {
    width: 100%;
    height: 700px;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.sir-img {
    /* border: 1px solid #cdb72d;
    border-radius: 100%; */
    height: 83%;
}

.fixed-bg {
    background-image: url("/images/frontend/fixed-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

.story-bg {
    background-image: url("/images/frontend/story-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

.find-me-banner {
    background-image: url("/images/frontend/find-header-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.header-height {
    height: 600px;
}

@media (max-width: 1440px) {
    .find-me-banner {
        height: 500px !important;
    }
    .find-me-banner .header-height {
        height: 500px !important;
    }
}
@media (max-width: 1199px) {
    .find-me-banner {
        height: 400px !important;
    }
    .find-me-banner .header-height {
        height: 400px !important;
    }
}
.bg-primary-light {
    background-color: #687680;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--secondaryColor);
}

.active-dot a {
    background-color: #7baa0e;
}

.show-collapse-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    background-color: #10012c;
    transition: left 0.4s ease;
    display: block !important;
}

.service-btn:hover {
    transform: scale(1.2);
    transition: all 0.5s ease;
}

/* modal css */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media (max-width: 512px) {
    .service-icon-img {
        display: none !important;
    }
}

/* Podcast section css */
.podcast_showcase {
    background-image: url("/images/frontend/podcastBanner2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.podcast_showcase h1 {
    color: #fff;
    font-size: 60px;
    font-family: var(--poppins) !important;
    font-weight: 800 !important;
    /* border: 1px solid #f9bf3a; */
    padding: 20px 50px;
    position: relative;
    overflow: hidden;
}

.podcast_showcase h1 span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ffffff, #f9bf3a);
    animation: animate1 2s linear infinite;
}
@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.podcast_showcase h1 span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, #f9bf3a);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.podcast_showcase h1 span:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #f9bf3a, #ffffff);
    animation: animate3 2s linear infinite;
}
@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.podcast_showcase h1 span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #f9bf3a, #ffffff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}


.latest_podcast_content_container {
    padding: 80px 0px;
    background: #f5f5f5;
}

.latest_podcast_content_container h2,
.all_podcast_content_container h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: var(--poppins) !important;
    text-transform: uppercase;
    color: #3b3b3b;
}
.latest_podcast_content_container h2 span,
.all_podcast_content_container h2 span {
    color: #f9bf3a;
}
.latest_podcast_card_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.podcast_card {
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden !important;
}
.podcast_card2{
    background: #f5f5f5;
}
.img_div {
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.podcast_card img {
    width: 100%;
}
.playBtn {
    position: absolute;
    width: 60px;
    margin-top: -200px;
    margin-left: 210px;
}
.podcast_card_content {
    font-family: var(--poppins) !important;
    padding: 10px 15px 25px 15px;
    font-size: 14px;
}

.all_podcast_content_container {
    padding: 80px 0px;
}
.all_podcast_card_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.load_more_btn_container {
    width: 100%;
    text-align: center;
}
#loadMoreBtn {
    border: 2px solid #f9bf3a;
    color: #f9bf3a;
    font-size: 15px;
    padding: 10px 30px;
    margin-top: 50px;
}

@media screen and (max-width: 1536px) {
    .playBtn {
        position: absolute;
        width: 60px;
        margin-top: -180px;
        margin-left: 180px;
    }
}
@media screen and (max-width: 1280px) {
    .playBtn {
        position: absolute;
        width: 50px;
        margin-top: -140px;
        margin-left: 140px;
    }
}
@media screen and (max-width: 1024px) {
    .playBtn {
        position: absolute;
        width: 40px;
        margin-top: -100px;
        margin-left: 100px;
    }
}
@media screen and (max-width: 768px) {
    .latest_podcast_card_container,
    .all_podcast_card_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    .playBtn {
        position: absolute;
        width: 40px;
        margin-top: -130px;
        margin-left: 130px;
    }
}
@media screen and (max-width: 640px) {
    .playBtn {
        position: absolute;
        width: 40px;
        margin-top: -130px;
        margin-left: 130px;
    }
}
@media screen and (max-width: 540px) {
    .playBtn {
        position: absolute;
        width: 40px;
        margin-top: -100px;
        margin-left: 100px;
    }
}
@media screen and (max-width: 480px) {
    .latest_podcast_card_container,
    .all_podcast_card_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }

    .playBtn {
        position: absolute;
        width: 50px;
        margin-top: -200px;
        margin-left: 200px;
    }
}
@media screen and (max-width: 440px) {
    .playBtn {
        position: absolute;
        width: 50px;
        margin-top: -180px;
        margin-left: 180px;
    }
}
@media screen and (max-width: 400px) {
    .playBtn {
        position: absolute;
        width: 50px;
        margin-top: -160px;
        margin-left: 160px;
    }
}
@media screen and (max-width: 360px) {
    .playBtn {
        position: absolute;
        width: 50px;
        margin-top: -150px;
        margin-left: 150px;
    }
}


/* podcast details css */
.podcast_details_section{
    padding: 80px 0px;
}
.podcast_details_heading{
    font-size: 30px;
    color: #f9bf3a;
    font-weight: 600;
    font-family: var(--poppins) !important;
    margin-bottom: 20px;
}

.podcast_details_content{
    margin-top: 25px;
    color: #383838;
}
.podcast_details_content h4{
    font-weight: 600;
    font-size: 18px;

}
.share_with_container{
    margin-top: 50px;
    display: flex;
    gap: 30px;
}
.share_with_container h3{
    font-weight: 700;
    font-size: 20px;
    color: #141414;
}

.social_link{
    background: #f9bf3a;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    gap: 10px;

}
.social_link img{
    height: 16px;
    margin: 5px;
    cursor: pointer;
}