* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nexa', sans-serif !important;
}

:root {
    --theme-pink: #963090;
    --theme-grey: #828282;
    --theme-purple: #280849;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/nexa-extra-light.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/nexa-normal.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/nexa-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nexa';
    src: url('../fonts/nexa-heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


/* =====================
   HERO BACKGROUND
===================== */
.hero-wrapper {
    position: relative;
    min-height: 900px;
    background: url("../images/home/hero-bg.jpg") center/cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
}

/* =====================
   HEADER
===================== */
.main-header {
    position: relative;
    z-index: 10;
}

.container-fluid {
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    /* display: flex; */
    justify-content: space-between;
}

.container {
    max-width: 1100px !important;
    margin: auto;
    padding: 20px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 85px;
    margin-top: 50px;
}

/* Hamburger */
.menu-toggle {
    width: 24px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #c4009b;
    margin: 5px 0;
}

/* =====================
   HERO CONTENT
===================== */
.hero-content {
    text-align: left;
    color: #fff;
    padding-top: 55px;
}

.hero-content p {
    color: #646464;
    margin-bottom: 0;
}

.hero-subtitle {
    letter-spacing: 4px;
    font-size: 23px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-title {
    font-size: 40px;
    color: var(--theme-pink);
    letter-spacing: 5.2px;
    font-weight: 900;
    margin-bottom: 400px;
}

/* CTA */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-pink);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 20x;
}

.hero-btn span {
    font-size: 18px;
}

.img-heading {
    width: 280px;
}

.section-space {
    padding: 100px 0;
}

.third-section-bg {
    background-color: #f0f0f0;
}

/* =====================
   FOOTER
===================== */
.site-footer {
    position: relative;
    background: url("../images/footer/bg.jpg") center/cover no-repeat;
    clip-path: polygon(0 6%, 50% 0, 100% 6%, 100% 100%, 0 100%);
    color: #fff;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-overlay {
    background: linear-gradient(rgba(40, 8, 73, 0.92),
            rgba(40, 8, 73, 0.92));
    padding: 295px 0 0px;
}

.footer-content {
    display: block;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    letter-spacing: 1.3px;
}

.footer-links a:hover {
    opacity: 1;
}

/* Address */
.footer-address h5,
.footer-subscribe h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-address p {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Subscribe */
.footer-subscribe p {
    font-size: 14px;
    opacity: 0.85;
}

.subscribe-form {
    margin-top: 15px;
}

.subscribe-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    color: #fff;
    margin-bottom: 12px;
}

.subscribe-form input::placeholder {
    color: #ddd;
}

.subscribe-form button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 16px;
    font-size: 13px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    font-size: 12px;
    opacity: 0.8;
    font-weight: 300;
}

.footer-policy a {
    margin-left: 15px;
    color: #fff;
    text-decoration: none;
}

.adv-section-icon {
    height: 50px;
}

.advantage-pera {
    font-weight: 600;
    margin-bottom: 50px;
    margin-top: 20px;
}

.last-footer-text {
    font-size: 12px;
}

/* sidebar */
/* Header */
/* .main-header {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
} */

/* Menu Toggle */
.menu-toggle {
    width: 30px;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--theme-pink);
    color: #fff;
    transition: 0.3s ease;
    z-index: 1001;
    padding: 20px;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    text-align: right;
}

.close-btn {
    font-size: 30px;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.sidebar-menu li {
    margin-bottom: 20px;
}

.sidebar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
}

.overlay.active {
    display: block;
}

.pr-content {
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1px;
    padding: 0 50px;
}

@media (max-width: 600px) {

    .section-space {
        padding: 20px 0;
    }

    .logo img {
        height: 40px;
    }

    .img-heading {
        margin-bottom: 40px;
    }

    .about-niyam {
        margin-top: 50px !important;
    }

    .pr-content {
        padding: 0;
    }

    .pr-title {
        font-weight: 600;
    }

    .footer-overlay {
        padding: 50px 0 0px;
    }

    .footer-bottom {
        border-top: none;
    }

    .desktop-version{
        display: none;
    }

    .mobile-version{
        display: block !important;
    }

    .main-header{
        padding-top: 0px;
    }
    
}

.mobile-version{
    display: none;
}

/* Hover effect div */
.row.flex-hover {
    display: flex;
    gap: 5px;
}

.flex-hover .col-box {
    flex: 1;
    transition: all 0.4s ease;
}

.box {
    padding: 40px;
    height: 500px;
    background-position: center;
    background-size: cover;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.flex-hover:hover .col-box {
    flex: 0.2;
}

.flex-hover .col-box:hover {
    flex: 0.6;
}

.flex-hover .col-box:hover p {
    display: block;
}

.flex-hover .col-box:hover h4 {
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.flex-hover p {
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #fff;
    opacity: 0.9;
    display: none;
}

.flex-hover h4 {
    text-align: left;
    margin-top: 80px;
    transform: rotate(-90deg);
    font-size: 18px;
}

.about-animatedbox {
    position: relative;
}

.about-animatedbox h4 {
    position: absolute;
    top: 260px;
    left: -23px;
    text-transform: uppercase;
}

.about-animatedbox p {
    position: absolute;
    top: -20px;
    left: 0;
}

/* DEFAULT STATE */
.flex-hover .col-box {
    flex: 0.2;
    transition: all 0.4s ease;
}

/* First box expanded by default */
.flex-hover .col-box:first-child {
    flex: 0.6;
}

/* When hovering the row, reset all */
.flex-hover:hover .col-box {
    flex: 0.2;
}

/* Hovered box expands */
.flex-hover .col-box:hover {
    flex: 0.6;
}

/* Text animations */
.flex-hover p {
    display: none;
}

.flex-hover .col-box:first-child p {
    display: block;
}

.flex-hover .col-box:hover p {
    display: block;
}

/* Heading rotation */
.flex-hover h4 {
    transform: rotate(-90deg);
    transition: 0.3s ease-in-out;
}

.flex-hover .col-box:first-child h4,
.flex-hover .col-box:hover h4 {
    transform: rotate(0deg);
}

/* Hide all paragraphs by default */
.flex-hover p {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* Show paragraph for first box (default state only) */
.flex-hover:not(:hover) .col-box:first-child p {
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
}

/* Show paragraph ONLY for hovered expanded box */
.flex-hover .col-box:hover p {
    opacity: 1;
    visibility: visible;
    transition: 0.3s all;
}

/* Default: all headings rotated */
.flex-hover h4 {
    transform: rotate(-90deg) !important;
    transition: 0.3s ease-in-out !important;
}

/* First box expanded by default */
.flex-hover:not(:hover) .col-box:first-child h4 {
    transform: rotate(0deg) !important;
}

/* Hovered expanded box */
.flex-hover .col-box:hover h4 {
    transform: rotate(0deg) !important;
}