@import url("variables.css?v=3");
/* General Reset */
@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-Light.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-Medium.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-SemiBold.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Suisse Intl";
    src: url("../assets/fonts/SuisseIntl-Bold.woff2") format("woff2"),
        url("../assets/fonts/SuisseIntl-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Suisse Intl", Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: white;
    font-size: 1.1vw;
}

option {
    text-transform: none;
}

/* Features Section */
.feature {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.feature-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.feature img {
    width: 210px;
    margin-bottom: 40px !important;
}
.custom-col {
    width: 22% !important;
}
.feature h3 {
    font-size: 2.4vw;
    border-top: 12px solid black;
    border-bottom: 12px solid black;
    padding: 1.1vw 0;

    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
}
.feature h3 span {
    line-height: 50px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-grey);
}

.feature-para {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}
.feature-para p {
    font-size: 1.2vw;
    color: black;
    font-weight: 500;
    max-width: 700px;
    margin: auto;
}

/* Empowering Section */
.empowering {
    padding: 100px 0px;
    background-color: #292829;
    color: #fff;
}

.empowering-con h2 {
    font-size: 4.5vw;
    line-height: 90%;
    font-weight: 400;
    text-transform: uppercase;
}

.empowering-con h2 span {
    font-size: 4.67vw;
    font-weight: 700;
}

.empowering-con h2 span span {
    font-size: 8vw;
    line-height: 70px;
}
.empowering-para {
    font-size: 1.2vw;

    color: #e26113;
}

.empowering-con {
    display: flex;
    justify-content: space-between;
}

.empowering-con h2 span span {
}

button {
    padding: 10px 20px;
    border: none;
    background: #ffffff;
    color: #fff;
    cursor: pointer;
}
.gradient-bg {
    background: linear-gradient(to right, #44a4d4 0%, #f04d30 100%);
    background: linear-gradient(
        to right,
        #2dacdb 0%,
        #de4989 50%,
        #f04d30 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    &.sm {
        display: inline-block;
        font-size: 4.67vw;
        line-height: 80%;
        font-weight: 900;
    }
    &.lg {
        display: inline-block;
        font-size: 8vw;
        line-height: 90%;
        font-weight: 900;
    }

    @media (max-width: 768px) {
        &.sm {
            font-size: 40px;
            line-height: 80%;
        }
        &.lg {
            font-size: 60px;
            line-height: 90%;
        }
    }
}
.empowering-con2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg-grad {
    display: flex;
    position: relative;
    padding: 10px;
    width: 44%;
    border-radius: 50px;
    z-index: 1;
}
.bg-grad::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 212, 255, 1) 0%,
        rgba(185, 39, 198, 1) 49%,
        rgba(244, 91, 26, 1) 100%
    );
    border-radius: 50px; /* Matches the parent div's border-radius */
    filter: blur(10px); /* Adds the blur effect */
    z-index: 1;
}
.bg-grad a {
    padding: 0.35vw;
    border-radius: 40px;
    font-size: 1.2vw;
    width: 100%;
    text-decoration: none;
    text-align: center;
    background-color: white;
    color: black;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1; /* Ensures the link stays above the blurred background */
    position: relative; /* Keeps the `a` tag above the pseudo-element */

    &:hover {
        /* background-color: var(--color-black) !important; */
        background-color: #292829 !important;
        color: white;
    }

    @media (max-width: 768px) {
        font-size: 14px;
        padding: 6px;
    }
}

.bg-grad a:hover {
    background-color: rgb(231, 231, 231);
}

/* Services Section */
.service {
    display: flex;
}
.service-container {
    /* display: flex;
    flex-direction: column;
    justify-content: space-around; */
    /* height: 650px; */

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px;
    border: 2px solid #ffffff;
}
.service-container-1 {
    background-image: url("../assets/img/Interior-Design.jpg");
}
.service-container-2 {
    background-image: url("../assets/img/Video-Animation.jpg");
}
.service-container-3 {
    background-image: url("../assets/img/Graphic-Design.png");
}
.service-container h3 {
    font-size: 2.58vw;
    font-weight: 700;
    margin-bottom: 130px;
    text-transform: uppercase;
    color: #020204;
}
.service-container h3 span {
    color: var(--color-grey);
    font-weight: 400;
}
.service-container p {
    font-size: 1.2vw;
    font-weight: 500;
    color: #fff;
}
.service-container a {
    padding: 0.6vw 2.5vw;
    color: white;
    background-color: black;
    border: none;
    font-size: 1.1vw;
    font-weight: 600;
    border-radius: 40px;
    text-transform: uppercase;

    &:hover {
        background-color: #fff !important;
        color: #000;
    }
}

/* Media Query */

/* Global Media Query CSS */
@media (min-width: 1280px) and (max-width: 1920px) {
    .header-mob {
        display: none !important;
    }
    .container {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Desktop Devices Media Query */

/* For 1280px width */
@media (min-width: 1280px) and (max-width: 1359px) {
    /* Features Section */
    .feature img {
        width: 160px;
    }
    .feature h3 {
        font-size: 40px;
        border-top: 15px solid black;
        border-bottom: 15px solid black;
        padding: 15px 0;
    }

    .feature h3 span {
        font-size: 40px;
    }

    /* Empowering Section */
    .empowering-con h2 {
        font-size: 60px;
        line-height: 70px;
    }

    .empowering-con h2 span {
        font-size: 80px;
        line-height: 90px;
    }

    .empowering-con h2 span span {
        font-size: 120px;
        line-height: 70px;
    }
    .empowering-para {
        font-size: 20px;
    }
    .bg-grad {
        width: 50%;
    }

    /* Services Section */
    .service-container h3 {
        font-size: 40px;
        line-height: 44px;
    }
}

/* For 1366px width */
@media (min-width: 1366px) and (max-width: 1439px) {
    /* Features Section */
    .feature img {
        width: 11.25rem;
        margin-bottom: 3% !important;
    }

    .feature h3 {
        font-size: 2.875rem;
        border-top: 1.125rem solid black;
        border-bottom: 1.125rem solid black;
    }

    .feature h3 span {
        font-size: 2.875rem;
    }

    /* Empowering Section */
    .empowering-con h2 {
        font-size: 4.375rem;
    }

    .empowering-con h2 span {
        font-size: 5rem;
    }

    .empowering-con h2 span span {
        font-size: 130px;
    }
    .empowering-para {
        font-size: 20px;
    }
    .bg-grad {
        width: 50%;
    }

    /* CTA Section */
    .con-cta h2 {
        font-size: 90px;
    }

    .con-cta h3 {
        font-size: 30px;
    }

    .cust-fc::placeholder {
        font-size: 18px;
    }

    .cust-fs {
        font-size: 15px;
    }

    .cust-fs option {
        font-size: 15px;
    }

    .con-cta button {
        font-size: 16px;
    }
}

/* For 1440px width */
@media (min-width: 1440px) and (max-width: 1535px) {
    /* Features Section */
    .feature img {
        width: 160px;
    }

    /* Empowering Section */

    .bg-grad {
        width: 50%;
    }
}

/* For 1536px width */
@media (min-width: 1536px) and (max-width: 1599px) {
    /* Styles for 1536px width */
}

/* For 1600px width */
@media (min-width: 1600px) and (max-width: 1919px) {
    /* Styles for 1600px width */
}

/* For 1920px width */
@media (min-width: 1920px) {
    /* Styles for 1920px width */
}

/* Tab Devices Media Query */

@media (min-width: 768px) and (max-width: 1024px) {
    .header {
        display: none !important;
    }

    .navbar-toggler-icon {
        padding-top: 9px;
        font-size: 35px;
        color: #d3aa39;
        border: 2px solid #d3aa39;
    }
    .offcanvas-header {
        padding: 30px;
    }
    .offcanvas-body {
        padding: 30px;
    }
    .offcanvas-body a {
        font-size: 20px;
        color: #d3aa39;
    }

    /* Dropdown menu styled as a collapsible menu */
    .custom-dropdow-mob {
        position: static;
    }

    .custom-dropdown-mob .dropdown-menu {
        display: none;
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .custom-dropdown-mob:hover .dropdown-menu {
        display: none; /* Disable hover for tablets and mobile */
    }

    /* Dropdown menu displayed when clicking */
    .custom-dropdown-mob.active .dropdown-menu {
        display: block;
    }

    /* Links styled for vertical stacking */
    .custom-dropdown-mob .dropdown-menu li {
        padding: 0.4rem 0;
    }

    .custom-dropdown-mob .dropdown-menu li a {
        color: #040424 !important;
        padding: 2px 1rem;
        font-size: 16px !important;
    }
    .custom-dropdown-mob .dropdown-menu li a:active {
        background-color: goldenrod;
    }
    .custom-dropdown-mob .dropdown-icon {
        width: 12px;
        height: 12px;
    }

    /* Icon rotation */
    .custom-dropdown-mob.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Features Section */
    .feature {
        padding: 70px 0px;
    }
    .feature img {
        width: 150px;
    }
    .feature h3 {
        font-size: 30px;
        line-height: 35px;
        border-top: 12px solid black;
        border-bottom: 12px solid black;
    }
    .feature h3 span {
        font-size: 30px;
        line-height: 35px;
    }
    .feature-para {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .feature-para p {
        font-size: 20px;
    }
    /* Empowering Section */
    .empowering {
        padding: 80px 0px;
    }
    .empowering-con {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .empowering-con h2 {
        font-size: 60px;
        line-height: 70px;
    }
    .empowering-con h2 span {
        font-size: 70px;
        line-height: 80px;
    }
    .empowering-con h2 span span {
        font-size: 90px;
    }
    .empowering-para {
        font-size: 18px;
    }
    .empowering-con2 {
        width: 100%;
        padding-top: 50px;
    }

    /* Services Section */
    .service-container {
        height: 550px;
        justify-content: space-evenly;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 40px;
    }
    .service-container h3 {
        font-size: 25px;
    }
    .service-container p {
        font-size: 16px;
    }
    .service-container a {
        padding: 10px 20px;
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0px;
    }
    .cta-section form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta-section form .col-md-3,
    .cta-section form .col-md-2,
    .cta-section form .col-1 {
        width: 80%;
        margin-bottom: 15px;
    }
    .con-cta h2 {
        font-size: 80px;
        font-weight: 300;
    }
    .con-cta h3 {
        font-size: 30px;
    }
    .cust-fc::placeholder {
        font-size: 18px;
    }

    /* Footer Section */
    .footer-logo p {
        font-size: 18px;
    }
    .footer-qr img {
        width: 100px;
        height: 100px;
    }
    .footer-qr a {
        font-size: 20px;
    }
    .a-mail {
        display: flex;
    }
    .round-icon {
        font-size: 12px;
    }
    .last-footer p {
        font-size: 15px;
    }
    .last-footer a {
        font-size: 15px;
    }
}

/* Mobile Devices Media Query */
@media (max-width: 767px) {
    /* Header */
    .header {
        display: none !important;
    }
    .header {
        padding: 0px 20px;
    }

    .navbar-toggler-icon {
        padding-top: 6px;
        font-size: 30px;
        color: #d3aa39;
        border: 2px solid #d3aa39;
    }
    .offcanvas-header {
        padding: 30px;
    }
    .offcanvas-body {
        padding: 30px;
    }
    .offcanvas-body a {
        font-size: 20px;
        color: #d3aa39;
    }

    /* Dropdown menu styled as a collapsible menu */
    .custom-dropdow-mob {
        position: static;
    }

    .custom-dropdown-mob .dropdown-menu {
        display: none;
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .custom-dropdown-mob:hover .dropdown-menu {
        display: none; /* Disable hover for tablets and mobile */
    }

    /* Dropdown menu displayed when clicking */
    .custom-dropdown-mob.active .dropdown-menu {
        display: block;
    }

    /* Links styled for vertical stacking */
    .custom-dropdown-mob .dropdown-menu li {
        padding: 0.5rem 0;
    }
    .custom-dropdown-mob .dropdown-menu li a {
        color: #040424 !important;
        padding: 2px 1rem;
        font-size: 16px;
    }
    .custom-dropdown-mob .dropdown-menu li a:active {
        background-color: goldenrod;
    }
    .custom-dropdown-mob .dropdown-icon {
        width: 10px;
        height: 10px;
    }
    /* Icon rotation */
    .custom-dropdown-mob.active .dropdown-icon {
        transform: rotate(180deg);
    }

    /* Features Section */
    .feature {
        padding: 80px 0px;
    }
    .feature-icons {
        flex-direction: column;
        justify-content: space-evenly;
    }
    .feature img {
        width: 100px;
    }
    .custom-col {
        width: 70% !important;
        padding-bottom: 50px;
    }
    .feature h3 {
        font-size: 30px;
        line-height: 40px;
        border-top: 10px solid black;
        border-bottom: 10px solid black;
    }
    .feature h3 span {
        font-size: 30px;
        line-height: 40px;
    }
    .feature-para {
        padding-top: 0px;
    }
    .feature-para p {
        font-size: 18px;
    }

    /* Empowering Section */
    .empowering {
        padding: 80px 0px;
    }
    .empowering-con {
        flex-direction: column;
    }
    .empowering-con1 {
        width: 100%;
        padding-bottom: 30px;
    }
    .empowering-con h2 {
        font-size: 40px;
        line-height: 45px;
    }
    .empowering-con h2 span {
        font-size: 60px;
        line-height: 65px;
    }
    .empowering-con h2 span span {
        font-size: 100px;
    }
    .empowering-para {
        font-size: 18px;
    }
    .empowering-con2 {
        width: 100%;
    }

    /* Services Section */
    .service {
        flex-direction: column;
    }
    .service-container {
        height: 350px;
        padding: 40px;
    }
    .service-container h3 {
        font-size: 30px;
        line-height: 45px;
    }
    .service-container p {
        font-size: 18px;
    }
    .service-container a {
        padding: 10px 20px;
        font-size: 15px;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0px;
    }
    .con-cta h2 {
        font-size: 50px;
        line-height: 60px;
    }
    .con-cta h3 {
        font-size: 25px;
        line-height: 30px;
    }
    .cta-section form .col-1 {
        width: 70%;
    }

    /* Footer Section */
    .main-footer {
        flex-direction: column;
    }

    .footer-logo p {
        font-size: 17px;
        padding-top: 20px;
    }
    .footer-qr {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-qr a {
        font-size: 18px;
    }
    .round-icon {
        font-size: 12px;
        margin-right: 5px;
        margin-left: 5px;
    }
    .last-footer p {
        font-size: 16px;
    }
    .last-footer a {
        display: none;
        font-size: 16px;
    }
}

.gradient-1 {
    background: linear-gradient(180deg, #e9dec2 0%, #7a5950 100%);
}
.gradient-2 {
    background: linear-gradient(180deg, #bacdd4 0%, #465364 100%);
}
.gradient-3 {
    background: linear-gradient(180deg, #e5e5c2 0%, #5e7053 100%);
}

.gallery-2 {
    a {
        border: 1px solid #ddd;
        display: block;
        border-radius: 10px;
        overflow: hidden;
    }
}
