@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&family=Jost:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&family=Jost:wght@300&family=Tiro+Bangla:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Cormorant+Garamond:ital,wght@1,600;1,700&family=Cormorant:wght@300&family=Lobster&family=Philosopher&family=Playball&family=Playfair+Display:ital,wght@1,900&family=Prata&family=Rajdhani:wght@700&family=Roboto+Mono:wght@100&family=Tangerine:wght@700&family=Varela+Round&display=swap');

:root {
    ---poppinFont: "Poppins", sans-serif;
    ---robotoFont: "Roboto", sans-serif;
    ---balooFont: 'Baloo Bhai 2', cursive;
    ---mont: 'MonteCarlo', cursive;
    ---primeColor: #148599;
    ---secondColor: rgb(242 202 103);
    ---cursiveFornt: 'Varela Round', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ============================================== Home Section ============================= */


.home_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 250px;
    margin-top: 10rem;
}

.home_logo img {
    height: 100%;
    width: 100%;

}

.homeSection {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: #111;
}

.homeSection video {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: auto;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    /* opacity: .5; */
}

.homeText {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}


.homeSection h1 span:last-child {
    color: #fff;
    font-weight: normal;
    font-size: 1.4rem;
    text-align: center;
    font-family: var(---popinsFont);
}

a .explore-btn {
    font-size: 1rem;
    padding: 0.5rem 2rem;
    border: 2px solid white;
    color: white;
    background: none;
    margin-top: 2rem;
    font-family: var(---balooFont);
}

a .explore-btn:hover {
    color: black;
    background-color: white;
    transition: all 0.5s ease-in-out;
}



@media(max-width:990px) {
    .homeText {
        z-index: 10;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        width: 100%;
        padding: 0 20px;
    }

    .homeText h2 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 2.2rem;
        font-family: var(---balooFont)
    }

    .homeText p {
        color: var(---primeColor);
        font-size: 1.6rem;
        text-transform: capitalize;
        font-family: var(---robotFont);
        text-align: center;
    }

    .homeSection h1 span:first-child {
        font-size: 7rem;
        color: #fff;
        font-weight: 600;
        font-family: var(---robotFont);
    }

    .homeSection h1 span:last-child {
        font-size: 1.2rem;
    }
}

@media(max-width:500px) {
    .homeText {
        z-index: 10;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        width: 100%;
        padding: 0 20px;
    }

    .homeText h2 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 1.2rem;
    }

    .homeText p {
        color: var(---primeColor);
        font-size: 1rem;
        text-transform: capitalize;
        font-family: var(---robotFont);
        text-align: center;
    }

    .homeSection h1 span:first-child {
        font-size: 5rem;
        color: #fff;
        font-weight: 600;
        font-family: var(---balooFont)
    }

    .homeSection h1 span:last-child {
        font-size: 1rem;
    }
}

@media (max-width:500px) and (min-width:320px) {

    .home_logo img {
        height: 15rem;
    }
}


/* ======================== Navbar ====================== */

.navbar {
    width: 100%;
    background: #000;
    height: auto;
    z-index: 100;
}

.navbar-brand {
    width: 100px;
    height: 100px;

}

.navbar-brand img {
    width: 100%;
    height: 100%;

}

.sticky {
    position: fixed;
    top: 0;
    transition: 0.5s ease all;
    /* background: black; */
    box-shadow: 0 3px 7px #808080;
}

/* .navbar-brand {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
    transform: scale(1.5);
} */

/* .navbar-brand img {
    width: 100%;
    height: 100%;
} */

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.logo {
    /* border: 2px solid red; */
    width: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
}



@media (max-width:990px) and (min-width:800px) {

    .navbar-brand {
        width: 60px;
        height: 50px;

    }

    .navbar-brand img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width:800px) and (min-width:550px) {

    .navbar-brand img {
        width: 60px;
        height: 60px;
    }

    .logo {
        height: 75px;
    }
}



@media (max-width:550px) and (min-width:320px) {

    .navbar-brand img {
        width: 80px;
        height: 80px;
    }

    .logo {
        height: 75px;
    }
}


.navbar-nav li.nav-item {
    position: relative;
    cursor: pointer;
}

.navbar-nav li.nav-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.navbar-nav li.nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 20px 20px;
    top: 100%;
    transform: translateY(50px);
    left: 0;
    width: 200px;
    background-color: #fff;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s all;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    border-top: 3px solid var(---primeColor);
}

.navbar-nav li.nav-item .dropdown .sub-nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 400;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
    color: #111;
    font-size: 1rem;
    /* font-family: var(---robotFont); */
    text-transform: uppercase;
    justify-content: space-evenly;
}

.nav-item .dropdown .sub-nav-link:hover {
    padding-left: 30px;
    color: var(---primeColor);
}


.navbar .nav-item {
    padding: 0px 5px;
}

.navbar .nav-item .nav-link {
    font-size: 1.2rem;
    color: #fff;
    font-family: var(---cursiveFornt);
    font-weight: 500;
    transition: 0.4s ease-in-out;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;

}

.sticky .nav-item .nav-link {
    color: #fff;
}

/* .navbar .nav-item .nav-link::before {
    content: '';
    width: 0%;
    height: 2px;
    display: block;
    background-color: currentColor;
    margin-top: 5px;
    bottom: 0;
    left: 0;
    border-radius: 50px;
} */

.navbar .nav-item .nav-link:hover::before {
    width: 100%;
    /* transition: 0.5s ease-in-out; */
}

#secondNavbar .nav-item .nav-link {
    color: #111;
}

.navbar-collapse {
    flex-grow: inherit;
}

.navbar-nav {
    position: relative;
    display: flex;
}

.navbar-icon {
    position: relative;
    display: flex;
    justify-content: center;
    /* transform: translateY(20%); */
}

.nav-icon-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 60px;
    right: 5%;
    z-index: 1000;
}

.nav-icon {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    transition: .4s ease all;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-icon span {
    padding: 0 5px;
    text-transform: capitalize;
}

.nav-icon:hover {
    color: #fff;
}

#menuToggle {
    display: none;
}

#afterLoginLink {
    display: none;
}

.loginProfile {
    display: none;
}

.dropdown-item {
    color: #fff;
    font-weight: 500;
    font-family: var(---fontMonstret);
    font-size: 1.1rem;
}

.dropdown-item i {
    padding: 0 10px;
}

@media(max-width:990px) {
    .navbar {
        width: 100%;
        height: 70px;
    }

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: start;
        position: relative;
    }

    .logo {
        height: 50px;
    }

    .navbar-brand {
        position: absolute;
        right: 0;
        width: 80px;
        height: 80px;
    }

    .navbar-brand img {
        width: 100%;
        height: 100%;
    }

    .navbar-brand .h1 {
        font-size: 1.6rem;
        line-height: 5px;
        font-weight: 600;
        text-align: left;
    }

    .navbar-brand p {
        font-size: 1rem;
        text-align: left;
    }

    .navbar-icon {
        right: 10px;
        position: absolute;
        transform: translateY(-50%);
    }

    .nav-icon-item {
        padding: 0 5px;
    }

    .navbar .navbar-nav>li>a:focus {
        outline: none !important;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        display: block;
        position: relative;
    }

    #secondNavbar .navbar-toggler-icon,
    #secondNavbar .navbar-toggler-icon:before,
    #secondNavbar .navbar-toggler-icon:after {
        width: 2rem;
        height: 2px;
        cursor: pointer;
        background: var(---primeColor);
        transition: transform .5s ease-in-out;
        left: 10px;
    }

    #secondNavbar .navbar-toggler-icon:before,
    #secondNavbar .navbar-toggler-icon:after {
        content: '';
        position: absolute;
        left: 0;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        width: 2rem;
        height: 2px;
        cursor: pointer;
        background: var(---primeColor);
        transition: transform .5s ease-in-out;
        left: 10px;
    }

    .sticky .navbar-toggler-icon,
    .sticky .navbar-toggler-icon:before,
    .sticky .navbar-toggler-icon:after {
        background-color: var(---primeColor);
    }

    .navbar-toggler-icon:before,
    .navbar-toggler-icon:after {
        content: '';
        position: absolute;
        left: 0;
        background: var(---primeColor);
    }

    .navbar-toggler-icon:before {
        bottom: 6px;
        background: var(---primeColor);
    }

    .navbar-toggler-icon:after {
        top: 6px;
        background: var(---primeColor);
    }

    #navbarNav {
        height: 100%;
        width: 250px;
        position: fixed;
        z-index: 100;
        top: 0;
        left: -100%;
        background-color: black;
        /* backdrop-filter: blur(7px); */
        overflow-x: hidden;
        transition: 0.5s ease;
    }

    .backBlur {
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        left: -100%;
        top: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .topNavbar {
        left: 0
    }

    #menuToggle:checked~#navbarNav {
        left: 0;
    }

    #menuToggle:checked~.backBlur {
        left: 0;
    }

    .navbar-nav {
        padding: 20px 0;
        margin: 40px 0;
    }

    .navbar .nav-item {
        padding: 0 20px;
    }

    .navbar .nav-item .nav-link {
        padding: 5px 5px 15px 5px;
        text-decoration: none;
        font-size: 16px;
        color: white;
        display: block;
        transition: 0.3s;
        position: relative;
    }

    .navbar .nav-item .nav-link::before {
        content: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        background: #808080;
        width: 100%;
        height: 1px;
    }

    #afterLoginLink {
        padding: 0;
        position: relative;
        display: block;
    }

    .navbar-toggler-icon-close {
        display: block;
        position: relative;
        position: absolute;
        right: 20px;
        top: 30px;
        cursor: pointer;
    }

    .navbar-toggler-icon-close:hover {
        transform: rotate(400deg);
    }

    .navbar-toggler-icon-close,
    .navbar-toggler-icon-close:before,
    .navbar-toggler-icon-close:after {
        width: 1.6rem;
        height: 2px;
        background: #111;
        transition: transform .5s ease-in-out;
        transform: rotate(45deg)
    }

    .navbar-toggler-icon-close:before,
    .navbar-toggler-icon-close:after {
        content: '';
        position: absolute;
        left: 0;
    }

    .navbar-toggler-icon-close:before {
        bottom: 6px;
        opacity: 0;
    }

    .navbar-toggler-icon-close:after {
        top: 0px;
        transform: rotate(90deg);
    }
}

@media(max-width:500px) {
    .navbar-brand {
        position: absolute;
        right: 0;
        height: 80px;
        width: 80px;
    }
}


/* ========================== About Page ======================= */
.about-text {
    display: flex;

    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 10px;

}

.about-text h2 {
    font-size: 1rem;
    font-family: var(---robotoFont);
}

.about-text2 {
    padding: 0 20px;

}

.about-text2 p {

    font-size: 1rem;
    /* font-style: italic;  */
    font-weight: 700;
    text-align: justify;

}

/* .aboutpage {
    background-image: url('img/About/bgimage.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
} */

.about-image {
    height: 80%;
    width: 90%;
    margin: 2rem;
}

.about-image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #dddddd;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.rowColor {
    background-color: #fff;
    border-radius: 10px;
    /* padding: 3rem; */
}

.about-line {
    height: 10%;
    width: 10%;
    background-color: black;
    border: 2px solid #000000;
}

.about-video {
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 5px #dddddd;
}

.heading {
    color: var(---primeColor);
    font-family: var(---mont);
    font-size: 50px;
    font-weight: 600;
}

.heading2 {
    color: var(---primeColor);
    font-family: var(---mont);
    font-size: 70px;
    font-weight: 600;
}

.sub-heading {
    color: white;
    font-family: var(---poppinFont);
}

.text {
    color: #000;
    font-family: 'Jost', sans-serif;
    text-align: justify;
}

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-description {
    padding-left: 2rem;
}

.video-center {
    display: flex;
    justify-content: center;
    align-items: center;

}

@media (max-width:550px) and (min-width:320px) {
    .about-description {
        padding-left: 0rem;
    }

    .about-text2 {
        padding: 10px;

    }

    .about-image {
        height: auto;
        width: auto;
        margin: 0;
    }

    .about-section-video {
        height: 200px;
        width: 250px;
    }

    .video-center {
        height: 250px;
    }

    .rowColor {
        padding: 1rem;
    }
}


/* ===================== Portfolio Page ============== */
.services {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 250px;
}

.services img {
    width: 100%;
    height: 100%;
}

.services .details {
    position: absolute;
    width: 100%;
    height: 45px;
    background: black;
    padding: 10px;
    /* box-shadow: 0 0 2px 2px #C0C0C0; */
    text-align: center;
    top: 90%;
    bottom: 0;
    transform: translateY(-50%);
    justify-content: center;
    align-items: center;
}

.services:hover .details {


    width: 100%;
    height: 100%;
    position: absolute;
    background: black;
    top: 50%;
    /* bottom: 0;
          transform: translateY(-50%); */
    transition: .5s ease-in-out;


}

.services .details h6 {
    color: #fff;

    padding-left: 10px;
    padding-top: 0px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
    text-align: center;
}

.services .details h3 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding-left: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services .details p {
    color: #fff;
    font-size: 16px;
    padding-left: 12px;
    margin-bottom: 0px;
    font-style: bold;
    line-height: 1.8;
    text-align: center;
}

.services .details .social {
    height: 40px;
}

.services .details .social i {
    line-height: 0;
    margin: 0 2px;
}

.services .details h3 {
    color: #148599;
}

.services .details h3:hover {
    color: #fff;
}

#services .services:hover .details {
    bottom: 0;
}

#services-details {
    padding: 6px 0;
}

.details h2 {
    color: #112363;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0px;
}

#services-details .details .social {
    margin-bottom: 15px;
}

#services-details .details .social a {
    background: #e9edfb;
    color: #112363;
    line-height: 1;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#services-details .details .social a:hover {
    background: #f82249;
    color: #fff;
}

#services-details .details .social a i {
    font-size: 16px;
    line-height: 0;
}

#services-details .details p {
    color: #112363;
    font-size: 15px;
    margin-bottom: 10px;
}

@media(max-width: 500px) {
    #services .services .details {
        bottom: -130px;
        position: absolute;
        right: 0;
        padding-top: 14px;
    }

    #services .services .details h6 {
        font-size: 10px;
        margin-bottom: 0px;
    }

    #services .services .details h3 {
        font-size: 14px;
        padding-left: 10px;
    }
}

@media screen and (max-width: 500px) {
    .movie-card {
        width: 95%;
        max-width: 95%;
        margin: 1em;
        display: block;
    }

    .container {
        padding: 0;
        margin: 0;
    }
}

/* =================================================Gallary============================ */

.banner-image {
    background: url('img/Portfolio/banner.jpg');
    background-size: cover;
    background-position: 100%;
    height: 400px;

}

.myGallery {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#containergallery {
    margin: auto;
}

.myGallery .grid-item {
    display: inline-block;
    height: 259px;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 400px;
}

.myGallery .grid-item img {
    width: 100%;
    height: auto;
    filter: url(filters.svg#grayscale);
}

.myGallery .grid-item img:hover {

    filter: none;
}

.myGallery .isotope-pager .pager {
    display: inline-block;
}

.myGallery .filters {
    width: 100%;
    text-align: center;
    padding-bottom: 35px;
    padding-top: 20px;
}

.myGallery .filters ul {
    list-style: none;
    padding: 20px 10px;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
    margin: 0 40px;
    /* border-radius: 30px; */
    background-color: #232323;
}

.myGallery .filters li {
    display: inline-block;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.myGallery .filters li a {
    color: #b6b6b6;
    text-decoration: none;
}

.myGallery .filters li a:hover {
    color: #fff;
}


/* .myGallery .filters li:hover {
box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
border-radius: 15px;
} */

.myGallery .filters li.active a {
    color: var(---primeColor);
    border: 1px solid var(---primeColor);
    border-radius: 15px;
    box-shadow: -1px 1px 11px rgba(0, 0, 0, .4);
    padding: 10px 25px;
}

.myGallery .isotope-pager a {
    margin: 6px 1px;
    display: inline-block;
    width: 50px;
    /* height: 60px; */
    line-height: 31px;
    color: #b6b6b6;
    font-weight: 600;
    transition: 0.3s;
    /* position: relative; */
    /* padding-right: 26px; */
    box-shadow: -1px 1px 11px rgba(0, 0, 0, .1);
    border-radius: 25px;
    background-color: #232323;
    border: .5px solid #e3ca66;
    text-decoration: none;
}

.myGallery .isotope-pager a:hover {
    color: #fff;
    border: .5px solid #ffeeac;
    box-shadow: -1px 1px 10px 3px rgba(0, 0, 0, .1);
}

.myGallery .isotope-pager .active {
    color: #e3ca66 !important;
    box-shadow: -1px 1px 10px 5px rgba(0, 0, 0, .1);
    border-radius: 25px;
    background-color: #161616;
    border: 1px dotted #e3ca66;
}

.myGallery .isotope-pager .prev {
    border-radius: 30px 0 0 30px;
}

.myGallery .isotope-pager .num::before,
.myGallery .next::before {
    border-right: 20px solid #2c3e50;
    right: 100%;
}

.myGallery .isotope-pager .num:after,
.myGallery .prev:after {
    border-right: 20px solid #f1f1f1;
    right: 0;
}

.myGallery .overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}

.myGallery .grid-item:hover .overlay {
    opacity: 1;
}

@media(max-width:600px) {
    .myGallery .grid-item {
        display: inline-block;
        height: 259px;
        position: relative;
        overflow: hidden;
        text-align: center;
        width: 400px;
    }

    .myGallery .filters {
        width: 100%;
        text-align: center;
        padding-bottom: 12px;
        padding-top: 0px;
    }

    .myGallery .filters ul {
        list-style: none;
        padding: 8px 0px;
        box-shadow: -1px 1px 11px rgb(0 0 0 / 40%);
        margin: 0 6px;
        border-radius: 14px;
        background-color: #232323;
    }

    .myGallery .filters li {
        display: inline-block;
        padding: 5px 4px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
    }

    .myGallery .filters li.active a {
        color: var(---primaryColor);
        border: 1px solid var(---primaryColor);
        border-radius: 15px;
        box-shadow: -1px 1px 11px rgb(0 0 0 / 40%);
        padding: 5px 14px;
    }
}

.gallery-text {
    height: 400px;
    width: 50%;
    /* border: 2px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 7rem;
    color: #000;
    font-family: var(---cursiveFornt);
}

@media (max-width:750px) and (min-width:320px) {
    .gallery-text {
        font-size: 5rem;
        width: 100%;

    }

    .banner-image {
        background-position: 8%;
    }
}


/* ============================ Ad Film ======================== */
/* .adfilms-text span {
    position: absolute;
    top: 30px;
    display:flex;
    align-items: center;
    justify-content: center;
    color: #eef0f2;
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 100px;
    text-transform: uppercase;
    line-height: 0;
} */

.adfilms {
    position: relative;
    background-image: linear-gradient(to right, rgb(0, 0, 0, .3), rgb(0, 0, 0, .3)), url('img/workImage.jfif');
    background-position: center center;
    background-size: cover;
    height: 500px;
}

.adfilms-text {
    position: absolute;
    /* height: 510px; */
    top: 50%;
    width: 100%;
    color: #fff;
    /* font-size: 6rem; */
    /* border: 2px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(---cursiveFornt);
}

.adfilms-text h2 {
    position: absolute;
    color: #fff;
    z-index: 1;
    font-size: 6rem;
    /* border: 2px solid red; */

    font-family: var(---cursiveFornt);
}

/* #addFilmBg{
    background: url('img/Portfolio/ad\ films\ banner.jpg');
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat !important;
} */

#addFilmBg {
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#addFilmBg:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('img/Portfolio/ad\ films\ banner.jpg');
    background-position: 100%;
    background-size: cover;
    opacity: 0.6;
    filter: grayscale(1);
}


.addFilms {
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* .box1 {
    height: 265px;
    width: 400px;
    border: 2px solid red;
    margin: 20px 30px;
    position: relative;
} */

.box1 iframe {
    padding: 1rem 2rem;
    height: 277px;
    width: 500px;

}

.box1 img {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

/* .adfilms-video {
    height: 12rem;
    width: 21rem;
} */


.filter-section {
    padding: 15px 0 !important;
    /* background-color: black !important; */
}

.filter-btn {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    background: transparent !important;
    margin: 0px 10px !important;
    padding: 5px 20px !important;
    border-radius: 10px !important;
}

/* .filter-btn:hover{
    color: white;
} */

.filter-btn.active {
    border: 2px solid #f5d15e !important;
    color: #f5d15e !important;
}

.filter-section {
    margin: 25px 13px !important;
}


@media (max-width:768px) and (min-width:320px) {
    .adfilms {
        background-position: 60%;
        height: 50vh;
    }

    .adfilms-text h2 {
        text-align: center;
        font-size: 2rem;
    }

    .filter-btn {
        margin: 10px 10px !important;
    }

    /* 
    .col-md-3 {
        width: 50% !important;
    } */
}

@media (max-width:770px) and (min-width:450px) {
    .adfilms-video iframe {
        width: 384px !important;
    }
}

@media (min-width: 768px) and (min-width:450px) {
    .col-md-3 {
        width: 33% !important;
    }
}

@media (max-width:450px) and (min-width:320px) {
    .box1 iframe {
        padding: 1rem 1rem !important;
        height: 200px !important;
    }

    .adfilms-video iframe {
        width: 350px !important;
    }

    .icon-box1 {
        position: relative;
        top: 4rem;
        left: 1rem
    }

    .icon-box2 {
        position: relative;
        top: 5rem;
    }

    .icon-box4 {
        position: relative;
        right: 1rem;
    }
}


@media (max-width:1440px) and (min-width:990px) {
    .col-md-3 {
        width: 25% !important;
    }
}


/* ================= Portfolio -- Films Section ================== */

.films {
    background-image: linear-gradient(to right, rgb(0, 0, 0, .5), rgb(0, 0, 0, .5)), url('img/ownersWorkImage.jfif');
    background-position: top center;
    background-size: cover;
    height: 500px;
    background-attachment: fixed;
}

.films-text {
    text-align: start;
    font-size: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 100%;
    color: #fff;
    font-family: var(---balooFont);
}

.box {
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: -webkit-image-set(url("img/Portfolio/black.jpg") 1x,
            url("img/Portfolio/black.jpg") 2x);
    background-position: 100%;
    background-size: cover;
    /* opacity: .5; */
}

/* .box1 {
    height: 265px;
    width: 400px;
    border: 2px solid red;
    margin: 20px 30px;
    position: relative;
} */

.box1 iframe {
    padding: 1rem 2rem;
    height: 277px;
    width: 500px;

}

.box1 img {
    overflow: hidden;
    height: 100%;
    width: 100%;

}

.video-title {
    padding-top: 5px;
}

@media (max-width:750px) {
    .films {
        background-position: 50%;
    }
}


@media (max-width:500px) and (min-width:320px) {
    .films {
        color: black;
        background-position: 6%;

    }

    .box1 iframe {
        width: 300px;
    }

    .films-text {
        width: 100%;
        font-size: 4rem;
    }
}

/* ======================= Social Media Page =====================  */

.social_media_banner {
    background-image: linear-gradient(to left, rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url(img/Portfolio/sunset-movie-theater-demonstration-3189813.jpg);
    background-position: 100%;
    background-size: cover;
    height: 500px;
    background-attachment: fixed;

}


.heading-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;

}

.heading-section .social-media-heading {
    font-size: 6rem;
    color: white;
    font-family: var(---balooFont);
}

.icons1 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 500px;
    width: 100%;
    /* border: 2px solid red; */
}

.icon-box1,
.icon-box2,
.icon-box3,
.icon-box4 {
    height: 100px;
    width: 100px;
    /* border: 2px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #c4b381;
    border-radius: 50px;
    background-color: rgb(255 255 255 / 8%);
}

.icon-box1 {
    align-self: flex-start;
    margin-top: 4rem;
}

.icon-box3 {
    align-self: flex-end;
    margin-bottom: 4rem;
}

.icon-box1 img,
.icon-box2 img,
.icon-box3 img,
.icon-box4 img {
    height: 40%;
    width: 40%;
    filter: invert(1);
}

.video-section {
    height: 600px;
    width: 100%;
    /* border: 2px solid red; */
    background: linear-gradient(black, gray);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-box {
    height: 500px;
    width: 800px;
    /* border: 2px solid red; */
    border-radius: 10px;
}

.video-box iframe {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.icons-part {
    background-image: linear-gradient(to left, rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url(img/Portfolio/social-media-banner.jpeg);
    background-position: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;

}

.icon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border: 2px solid red; */
    height: 500px;
    width: 100%;
}

.part1 {
    color: white;
    font-size: 3rem;
    font-family: var(---poppinFont);
}

.part2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.part3 {
    width: auto;
    color: white;
    font-size: 1rem;
    font-family: 'Tiro Bangla', serif;
    text-align: center;
}

.small-icon {
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    /* border: 2px solid red; */
    margin: 20px;
    background-color: rgba(196, 185, 151, 0.1);
    cursor: pointer;
}

.small-icon:hover {
    transition: all 0.5s ease-in-out;
    background-color: #ab9966;
}

.small-icon img {
    height: 40%;
    width: 40%;
    filter: invert(1);
}

.icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:990px) {
    .heading-section .social-media-heading {
        font-size: 3.5rem;
    }
}

@media (max-width:700px) {

    .icon-box1,
    .icon-box2,
    .icon-box3,
    .icon-box4 {
        height: 70px;
        width: 70px;
    }
}

@media (max-width:550px) and (min-width:320px) {

    .icon-box1,
    .icon-box2,
    .icon-box3,
    .icon-box4 {
        height: 70px;
        width: 70px;
    }

    .icon-box3 {
        align-self: flex-end;
        margin-bottom: 6rem;
    }

    .heading-section .social-media-heading {
        font-size: 2.5rem;
    }

    .heading-section {
        width: 7rem;
    }

    .part1 {
        font-size: 18px;
    }

    .part3 {
        width: 90%;
    }

    .small-icon {
        margin: 10px;
    }

    .small-icon {
        height: 50px;
        width: 50px;
    }

}

@media (max-width:320px) {
    .heading-section {
        width: 7rem;
    }

    .social_media_banner {
        height: 500px;
    }

    .icon-box1,
    .icon-box2,
    .icon-box3,
    .icon-box4 {
        height: 50px;
        width: 50px;
    }
}

@media (max-width:900px) and (min-width:550px) {
    .part1 {
        font-size: 2rem;
    }
}

@media (max-width:900px) and (min-width:750px) {
    .video-box {
        height: 400px;
        width: 700px;
    }
}

@media (max-width:750px) and (min-width:550px) {
    .video-box {
        height: 300px;
        width: 500px;
    }

    .video-section {
        height: 400px;
    }
}

@media (max-width:550px) and (min-width:320px) {
    .video-box {
        height: 200px;
        width: 300px;
    }

    .video-section {
        height: 300px;
    }

    footer {
        font-size: 13px !important;
    }

    .icons-part {
        background-position: 70%;
    }

}


/* ================== Contact Page ========================  */


/*--------------------------------------------------------------
# Contact Me
--------------------------------------------------------------*/

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

.contact .info-box i.bx {
    font-size: 24px;
    color: #148599;
    border-radius: 50%;
    padding: 15px;
    background: #eaf6e9;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.contact .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #687683;
    line-height: 1;
    margin: 0 8px;
    transition: 0.3s;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid #dde1e4;
}

.contact .social-links a:hover {
    color: #fff;
    border-color: #148599;
    background: #148599;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 27px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;

}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
    background-color: #ffb727;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #148599;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.contact-me {
    background-image: url('img/Portfolio/camera-photography-sunset-5113699-819x1024.jpg');
    background-position: 100%;
    background-size: cover;
    height: 600px;
    background-attachment: fixed;
}

.contact-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: white;
    height: 500px;
    font-family: var(---balooFont);
}

.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;

}

.address-bar {
    height: auto;
    width: 100%;
    /* background:linear-gradient(to right, rgb(0,0,0,.7), rgb(0,0,0,.7)),url('img/Portfolio/black.jpg');
    background-attachment: fixed;
    background-position: cover ;
    background-size: 100% 100%; */
    padding: 20px 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.contact-section:hover {
    background: #000;
    transition: .6s ease-in-out;
}

.contact-section {
    height: 300px;
    width: 400px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 20px;
    font-family: var(---poppinFont);
    font-weight: 500;
    color: #000;
    border: 1px solid #000;
}

.contact-section i {
    font-size: 2rem;
    color: var(---primeColor)
}

.sec1,
.sec3 {
    color: var(---primeColor);
}

.map {
    background-image: url('img/Portfolio/iceland-aurora-borealis-silhouettes-5586225-1024x683.jpg');
    background-position: 100%;
    background-size: cover;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 0rem;
}

.mapsection {
    display: flex;
    justify-content: center;
    align-items: center;

}

::placeholder {
    color: white !important;
}

/* 
iframe {
    border-top: 3px solid #9c86a0;
    border-bottom: 3px solid #9c86a0;
} */




/* =============== Footer ================== */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(---poppinFont);
    font-size: 15px
}

footer a {
    color: #f5d15e;
    text-decoration: none;
}

footer a:hover {
    color: #f5d15e;
    text-decoration: none;
}

.floatingText {
    width: auto;
    height: auto;
    position: fixed;
    bottom: 50px;
    z-index: 1000;
    right: 130px;
    animation: angleCross .8s ease-in-out infinite forwards;
}

@keyframes angleCross {
    0% {
        opacity: 1;
        transform: translateX(-5px);
    }

    50% {
        opacity: 0;
        transform: translateX(0px);
    }

    100% {
        opacity: 1;
        transform: translateX(-5px);
    }
}

.floatingText p {
    background-color: black;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px;
    position: relative;
}

.floatingText p:after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background-color: black;
    color: white;
    top: 5;
    transform: rotate(225deg);
    right: -12px;
    z-index: -1;
}

.floattingButton .float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: #047ad5;
    color: white;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    animation: bot-to-top 2s ease-out;
    padding: 5px;
}

@media (max-width: 500px) {
    .floattingButton .float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        /* right: 10px; */
    }
}

.floattingButton ul {
    position: fixed;
    right: 40px;
    padding-bottom: 20px;
    bottom: 80px;
    z-index: 100;
}

.floattingButton ul li {
    list-style: none;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #fff;
}

.floattingButton ul li:first-child {
    background-color: rgb(11, 224, 22);
    border-radius: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    display: block;
    padding: 5px;
}

.floattingButton ul li:last-child {
    background-color: rgb(4, 99, 50);
    border-radius: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    display: block;
    padding: 5px;
}

.floattingButton ul:hover {
    visibility: visible !important;
    opacity: 1 !important;
}

.floattingButton a#menu-share+ul {
    visibility: hidden;
}

.floattingButton a#menu-share:hover+ul {
    visibility: visible;
    animation: scale-in 2s;
}

.floattingButton .my-float {
    font-size: 22px;
    margin-top: 14px;

}

@media(max-width: 768px) {
    .floattingButton .my-float {
        font-size: 17px;
        margin-top: 15px;
    }

    @media(max-width: 768px) {
        .floatingText p {
            display: none;
        }
    }

    .floattingButton a#menu-share i {
        animation: rotate-in 0.5s;
    }

    .floattingButton a#menu-share:hover>i {
        animation: rotate-out 0.5s;
    }

    @keyframes bot-to-top {
        0% {
            bottom: -40px
        }

        50% {
            bottom: 40px
        }
    }

    @keyframes scale-in {
        from {
            transform: scale(0);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes rotate-in {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes rotate-out {
        from {
            transform: rotate(360deg);
        }

        to {
            transform: rotate(0deg);
        }
    }
}

/* ================== Portfolio Cards (Compact Hover Design) ======================== */
.filter-gallery {
    padding: 20px 0;
}

.filter-gallery .row {
    row-gap: 25px;
}

.item-content {
    height: auto;
}

.services {
    position: relative;
    height: 350px; /* Further reduced height */
    width: 267px;  /* Maintained width for consistency */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services:hover {
    transform: translateY(-8px);
}

.services img.portfolio-poster {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover !important; /* Forces all images to match the Singham shape */
    display: block;
    transition: transform 0.6s ease;
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.8);
}

.services:hover img.portfolio-poster {
    transform: scale(1.1);
    filter: brightness(0.4);
}

.services .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0; /* Hidden without hover */
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.services:hover .details {
    opacity: 1; /* Show only on hover */
}

.services .details h3 {
    font-size: 1.3rem;
    color: #f5d15e;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.services .details h6 {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    margin-bottom: 2px;
}

.services .details p {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .services .details {
        opacity: 1; /* Keep visible on mobile */
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .services .details {
        padding: 15px;
    }
    .services .details h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services .details {
        opacity: 1; /* Keep visible on mobile for better UX */
        transform: translateY(0);
        padding: 15px;
    }
    .services .details h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services {
        aspect-ratio: 2 / 3;
    }
    .services .details h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .services .details {
        transform: translateY(calc(100% - 54px));
    }
}

@media (max-width: 575px) {
    .filter-gallery {
        padding-inline: 15px;
    }

    .services {
        max-width: 360px;
        margin-inline: auto;
    }
}


/* ==================== Enhanced Reusable Components ==================== */
.premium-navbar {
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 0 !important; /* Increased height even more */
    transition: all 0.4s ease;
    z-index: 9999 !important;
    position: sticky;
    top: 0;
    width: 100%;
}

.premium-navbar.scrolled {
    padding: 15px 0 !important;
    background: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    height: 115px !important; /* Larger logo as requested */
    width: auto;
    object-fit: contain;
    transition: 0.3s;
    filter: drop-shadow(0 0 10px rgba(20, 133, 153, 0.3));
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-family: var(---poppinFont);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(---secondColor);
    overflow: hidden;
    transition: 0.3s;
    font-family: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inset(100% 0 0 0);
    pointer-events: none;
    z-index: 1;
}

.navbar-nav .nav-link:hover::before {
    clip-path: inset(0 0 0 0);
}

.contact-btn {
    background: var(---primeColor);
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.contact-btn:hover {
    background: transparent;
    border-color: var(---primeColor);
    color: var(---primeColor) !important;
}

/* ==================== Full-Width Cinematic Rich Footer ==================== */
.premium-footer-fluid {
    background: #050505;
    padding: 100px 0 0;
    color: #fff;
    position: relative;
    border-top: 5px solid var(---primeColor);
    overflow: hidden;
}

.footer-bg-glow {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 133, 153, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .footer-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.f-brand-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.f-logo-main {
    height: 90px;
    filter: drop-shadow(0 0 10px rgba(20, 133, 153, 0.3));
}

.f-brand-name {
    font-family: var(---balooFont);
    color: var(---secondColor);
    font-size: 2.2rem;
    margin: 0;
    letter-spacing: 2px;
}

.f-slogan {
    color: var(---primeColor);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
}

.f-owner-wrap {
    margin: 25px 0;
    padding-left: 20px;
    border-left: 3px solid var(---primeColor);
}

.f-owner-label { color: rgba(255, 255, 255, 0.7); font-size: 0.8rem; letter-spacing: 3px; display: block; margin-bottom: 5px; }
.f-owner-name { color: #fff; font-weight: 700; font-size: 1.2rem; }

.f-social-grid {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.f-social-btn {
    width: 45px; height: 45px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    display: flex;
    align-items: center; justify-content: center;
    color: #fff;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.f-social-btn:hover {
    background: var(---primeColor);
    color: #fff;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(20, 133, 153, 0.4);
}

.f-heading-rich {
    font-family: var(---balooFont);
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 45px;
    position: relative;
}

.f-heading-rich::after {
    content: "";
    position: absolute;
    bottom: -12px; left: 0;
    width: 40px; height: 2px;
    background: var(---primeColor);
}

.f-nav-list { list-style: none; padding: 0; }
.f-nav-list li { margin-bottom: 18px; }
.f-nav-list a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
    letter-spacing: 1px;
}

.f-nav-list a:hover {
    color: var(---secondColor);
    padding-left: 12px;
}

.f-contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.f-contact-item {
    display: flex;
    gap: 20px;
}

.f-contact-item i {
    color: var(---primeColor);
    font-size: 1.3rem;
    margin-top: 4px;
}

.f-contact-item p {
    color: #fff;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.f-copyright-strip {
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .f-copyright-strip {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.f-copy-left p, .f-copy-right p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 2px;
}

.f-prime { color: var(---primeColor); font-weight: 600; }
.f-copy-right a { color: var(---secondColor); text-decoration: none; font-weight: 600; transition: 0.3s; }
.f-copy-right a:hover { color: #fff; }

/* ==================== Services Layout Correction ==================== */
.section-title {
    text-align: left !important;
    padding-left: 15px;
}

.section-title h2::after {
    left: 0 !important;
    transform: none !important;
}