* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", serif;
}

body {
    background: url(./images/bg.png);
    background-size: cover;
    background-attachment: fixed;
}

.logos {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar {
    background: linear-gradient(45deg, #020202, #231a13);
}


.comic-button {
    display: inline-block;
    padding: 6px 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
        color: #000000;
    background-color: #ffdf7e;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comic-button:hover {
    background-color: #fff;
    color: #ff5252;
    border: 2px solid #ff5252;
    box-shadow: 5px 5px 0px #ff5252;
}

.comic-button:active {
    background-color: #fcf414;
    box-shadow: none;
    transform: translateY(4px);
}



.navbar-brand {
    width: 100px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: right;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    margin: 0 7px;
    color: #ffffff !important;
    text-transform: uppercase;
}



.about_wrapper {
    padding: 60px 0;

}


.about_wrapper p {
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    line-height: 35px;
    color: #000000;
}

.about_wrapper p b {
    color: #b17d0a;
    font-size: 18px;
}

.about_wrapper h2 {
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    line-height: 59px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #2f2118;
}

.about_wrapper h2 span {
    color: #e9ab20;
}


.participate__wrapper {
    padding: 60px 0;
}

.participate__inner {
       background: #fff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin: 60px auto;
    border: 4px solid #fdae4d;
}

.participate__inner h2 {
    color: #000000;
    font-size: 35px;
    width: 80%;
    margin: 0 auto;
    line-height: 42px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.participate__inner p{
        font-size: 17px;
    line-height: 28px;
}

.participate__inner a {
    /* background-color: #ffc100; */
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    margin: 30px 0 10px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    /* border: 1px solid #ffc100; */
}

.participate__inner a:hover {
    background: #ffffff;
    border: 1px solid f45b1f;
    color: #f45b1f;
}

.highlights {
    padding: 60px 0;
    background: #36271c;
}

.highlights h2 {
    text-align: center;
    font-weight: bold;
    font-size: 45px;
    text-transform: uppercase;
    padding: 0 0 20px;
    color: #fff;
    line-height: 60px;
}

.highlights h2 span {
    color: #e18c2f;
}



.highlight_inner .card {
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-radius: 0.75em;
    padding: 0;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.highlight_inner .card:nth-child(even) {
    margin: 0 1em;
}

.card-top {
    background: #edf4f6;
    padding: 10px;
}

.card-top .card-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.card-top .overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 17.75em;
    width: 100%;
    border-top-left-radius: 0.75em;
    border-top-right-radius: 0.75em;
    z-index: 10;
    background: rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: all 700ms ease;
    opacity: 0;
}

.card-top .overlay h1 {
    text-align: center;
    font-weight: 500;
    color: #fff;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.card-top .overlay:hover,
.card-top .overlay:focus {
    opacity: 1;
}

.triangle {
    position: relative;
    width: 0;
    height: 0;
    border-left: 1.5em solid transparent;
    border-right: 1.5em solid transparent;
    border-top: 1em solid #edf4f6;
    margin: 0 auto -1.75em auto;
    top: -0.25em;
    z-index: 20;
}

.card-middle {
    display: none;
    background: #efefef;
    padding: 2em 1em 1em 1em;
}

.card-middle .more {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.card-bottom {
    /* background: #fff; */
    padding: 20px 10px 0;
    border-bottom-left-radius: 0.75em;
    border-bottom-right-radius: 0.75em;
    min-height: 90px;
}

.card-bottom .card-title {
    font-weight: 700;
    font-size: 16px;
}

.circle-button {
    position: absolute;
    bottom: 15px;
    right: 2.4em;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    color: #fff;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.275);
    outline: none;
    cursor: pointer;
    transition: all 300ms ease;
}

.circle-button .close {
    transition: transform 400ms ease;
    width: 31px;
    margin: 8px;
}

.highlights .col-lg-3 {
    width: 20%;
}


.closeRotate {
    transform: rotate(45deg);
}



.why_part {
    padding: 80px 0;
}

.why_part h2 {
    text-align: center;
    font-weight: 800;
    padding: 0 0 40px;
}

.why_part_inner {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all .3s ease-in;
    padding: 20px;
    border-radius: 13px;
    display: flex;
    align-items: center;
}

.why_part_inner p{
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 700;
}

.why_part_inner img {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    margin: 0 20px 0 0;
    border-radius: 15px;
}

#insight {
    margin: 0 0 40px;
}

.insights h2 {
    text-align: center;
    font-weight: bold;
    font-size: 45px;
    text-transform: uppercase;
    padding: 0 0 50px;
    color: #000000;
    line-height: 60px;
}

.highlight_inner {
    margin: 30px 0;
    background: #4e3827;
    text-align: center;
    padding: 20px 20px 0;
    border-radius: 10px;
    box-shadow:rgb(198 222 34 / 6%) 0px 7px 29px 0px;
}


.highlight_inner p {
    color: #ffffff;
    font-size: 17px;
    line-height: 26px;
    font-weight: bold;
    padding: 0;
}

.souvenir_btn {
    text-align: center;
    margin: 30px auto;
}

.insights {
    padding: 60px 0;
    background: url(./images/ai_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.insights h2 {
    font-size: 40px;
    line-height: 50px;
    padding: 0 0 40px;
}

.insights img {
    padding: 20px;
}

.insight_item img {
    border: 1px solid #5d3cb11a;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 20%) 4px 4px 12px;
    min-height: 400px;
}

.owl-prev {
    position: absolute;
    top: 45%;
    left: -2%;
}

.owl-next {
    position: absolute;
    top: 45%;
    right: -2%;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #211954;
    display: inline-block;
    cursor: pointer;
    border: 0;
    height: 35px;
    width: 35px;
    border-radius: 50px;
}

.register_nav {
    background: linear-gradient(to right, #020532, #613fb7);
}

.register_nav .nav-link {
    color: #fff !important;
}

.sec-title {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.sec-title_heading {
    text-transform: uppercase;
    color: rgb(255 255 255);
}

.testimonial-block_one {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-block_one-inner {
    position: relative;
}

.testimonial-block_one-content {
    position: relative;
    padding: 25px 25px 45px 25px;
    transition: all 500ms ease;
    border: 1px solid #ffffff52;
    border-radius: 10px;
      background: #4e3827;
      text-align: center;
    overflow: hidden;
}

.testimonial-block_one-content p span img {
    width: 25px;
    height: auto;
    padding-right: 5px;
}

.testimonial-block_one-content h3,
.testimonial-block_one-content h4,
.testimonial-block_one-content p {
    color: #fff !important;
}

.testimonial-block_one-content p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-block_one-content h3 {
    font-size: 22px;
    margin-bottom: 30px;
}

#contact {
    padding: 60px 0;
}

#contact h2 {
    text-align: center;
    font-weight: bold;
    font-size: 45px;
    text-transform: uppercase;
    /* padding: 0 0 50px; */
    color: #000000;
    line-height: 60px;
}

.testimonial-block_one-inner:hover .testimonial-block_one-content:before {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -moz-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.testimonial-block_one-author {
    position: relative;
    width: 100%;
    height: 70px;
    display: inline-block;
}

.testimonial-block_one-name {
    position: relative;
    font-weight: 500;
    margin-top: 25px;
    color: var(--white-color);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-block_one-inner:hover .testimonial-block_one-designation,
.testimonial-block_one-inner:hover .testimonial-block_one-name {
    color: var(--color-four);
}

.testimonial-block_one-designation {
    position: relative;
    font-weight: 400;
    font-size: 15px;
    margin-top: 5px;
    opacity: 0.30;
    color: var(--white-color);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-block_one-number {
    position: relative;
    font-weight: 700;
    font-size: 40px;
    margin-top: 30px;
    margin-right: 10px;
    opacity: 0.10;
    text-align: right;
    color: var(--white-color);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-block_one-inner:hover .testimonial-block_one-number {
    opacity: 1;
    color: #ffffff;
}

.testimonial-block_one-lower {
    position: relative;
    margin-left: 30px;
    margin-top: 25px;
    font-size: 18px;
    line-height: 28px;
    padding-left: 70px;
    color: var(--white-color);
}

.testimonial-block_one-lower .quote_icon {
    position: absolute;
    left: 0px;
    top: 6px;
    line-height: 1em;
}

.souvenir_btn a {
    text-align: center;
    border: 1px solid #f45b1f;
    min-height: 430px;
    background: linear-gradient(to right, #3c61cd, #2f478d);
    margin-bottom: 30px;
    /* box-shadow: rgb(149 4 63 / 63%) 0px 30px 60px -12px inset, rgb(156 4 65 / 59%) 0px 18px 36px -18px inset; */
    border-radius: 3px;
    padding: 10px 30px;
    color: #fff;
    text-transform: none;
    text-decoration: none;
}

.contact_row {
    position: relative;
    padding: 25px 25px 45px 25px;
    transition: all 500ms ease;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 10px;
    /* background: #2073b7; */
}

.contact_row h3 {
    text-align: center;
    color: #000000;
    padding: 0 0 20px;
}

.own_wrapper {
    padding: 60px 0;
}

.own_wrapper h2 {
    text-align: center;
    font-weight: bold;
    font-size: 45px;
    text-transform: uppercase;
    padding: 0 0 50px;
    color: #000000;
    line-height: 60px;
    margin: 0 0 20px;
}

.own_inner {
    background: linear-gradient(to right, #2073b7, #2274b7);
    padding: 30px;
    text-align: center;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
    border-radius: 15px;
    box-shadow: #c2c2c5 0px 0px 0px 2px inset, rgb(255, 255, 255) 10px -10px 0px -3px, rgb(181 106 68 / 15%) 10px -10px, rgb(255, 255, 255) 20px -20px 0px -3px, rgb(30 65 105 / 19%) 20px -20px, rgb(255, 255, 255) 30px -30px 0px -3px, rgb(255 255 255) 30px -30px, rgb(255, 255, 255) 40px -40px 0px -3px, rgb(255 255 255) 40px -40px;
    margin: 15px 30px 60px;
    transition: all .3s ease-in;
}

.own_inner:hover {
    background: linear-gradient(to right, #613fb7, #2073b7);
    transform: translateY(-10px);
}

.own_inner p {
    color: #fff;
    font-size: 18px;
    margin: 10px;
}


.main-footer {
    position: relative;
    background: url(./images/delhi.png) no-repeat center center;
    background-size: cover;
    /* Ensures the image covers the entire area */
    padding: 0;
}

.main-footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #4e3827, #4e3827);
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 1;
}


.main-footer .widgets-section {
    position: relative;
    padding: 80px 0px 50px;
    z-index: 2;
}

.main-footer .footer-column {
    position: relative;
    padding-bottom: 30px;
}

.footer-text {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.main-footer h2 {
    position: relative;
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    margin-top: 50px;
    color: rgb(255, 255, 255);
}

.footer_socials {
    position: relative;
    margin-top: 20px;
    padding-left: 0;
}

.footer_socials li {
    position: relative;
    margin-right: 15px;
    display: inline-block;
}

.footer_socials li a {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer_navs {
    position: relative;
}

.footer_navs li {
    position: relative;
    border-top: 1px solid #ffffff33;
    list-style: none;
}

.footer_navs li a {
    position: relative;
    font-size: 18px;
    display: block;
    font-weight: 400;
    padding: 18px 0px;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer_navs li a i {
    position: absolute;
    right: 0px;
    transform: rotate(45deg);
    transition: all 300ms ease;
}

.footer_navs li a:hover i {
    transform: rotate(0deg);
}

.footer_socials li i {
    position: relative;
    transform: rotate(45deg);
    display: inline-block;
    transition: all 300ms ease;
}

.footer-bottom {
    position: relative;
    background-color: #0f0f0f;
    z-index: 1;
}

.footer_copyright {
    position: relative;
    font-size: 16px;
    color: rgb(255, 255, 255);
}


.countdown-bar {
    background: linear-gradient(45deg, #503327, #cf784c);
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.countdown-timer {
    font-size: 2rem;
    font-weight: bold;
}

.countdown-timer span {
    display: inline-block;
    margin: 0 10px;
}

.btn-custom {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

.btn-register {
    background-color: white;
    color: #007acc;
    border: 2px solid #007acc;
}

.btn-register:hover {
    background-color: #007acc;
    color: white;
}

.btn-calendar {
    background-color: #f5f5f5;
    color: #333;
    border: 2px solid #f5f5f5;
}

.btn-calendar:hover {
    background-color: #333;
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f5f5f5;
}

.countdown-bar button::after {
    background-image: none;
}

.btn:hover {
    color: #000 !important;
}

.btn-register a {
    text-decoration: none;
}

.btn-register a:hover {
    color: #000 !important;
    background: #000;
}

.time {
    font-size: 15px;
    margin: 0 !important;
}


@media only screen and (max-width: 768px) {
    .highlights .col-lg-3 {
        width: 100%
    }

}

@media only screen and (max-width: 991px) {
    .countdown-bar {
        display: none;
    }

    .highlights .col-lg-3 {
        width: 50%
    }


    .card-bottom {
        min-height: auto;
    }

    .about_wrapper p {
        width: 100%;
    }

    .own_wrapper h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1300px) {

    .highlights .col-lg-3 {
        width: 33%
    }
}