/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*Universal styling*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    scroll-behavior: smooth;
}

section{
    padding: 100px;
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Dark mode theme */ 
:root {
    --primary-color: #fff;
    --secondary-color: #010101;
}

.dark-theme {
    --primary-color: #010101;
    --secondary-color: #fff;
}
/*Front section styling                                */
.landing-page{
    position: relative;
    min-height: 100vh;
    background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) ), url(/assets/images/l-moment.jpg);
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* transition-duration: 1s; */
}

.dark-theme .landing-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) ), url(/assets/images/skyline.jpg);
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.landing-page h1{
    font-size: 3em;
    color: #fff;
    font-weight: 500;
    line-height: 1.5em;
}
.landing-page h2{
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;
}
.landing-btn{
    position: relative;
    background: var(--primary-color);
    display: inline-block;
    color: var(--secondary-color);
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.5s;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.landing-btn.secondary{
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 20px;
}
.landing-btn:hover,
.landing-btn.secondary:hover{
    transform: translateY(-2px);
    background: #fff;
    color: #010101;
    border-color: #fff;
}
/* Type text on Hero image                  */
.auto-type {
    color: #fff;
}

.hero-title {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
} 

/* Standard text option instead of typetext                    */

.trust-text {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Dark mode icons */ 
#icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: block;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, filter 0.3s ease;
}
#icon:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.24);
}
/*Header styling                                     */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px clamp(30px, 4vw, 80px);
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: 0.5s;
}
header .header-actions{
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}
header .logo{
    color: var(--primary-color);
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 120px;
}
/*header sticky in js                                */
header.sticky{
    background: var(--primary-color);
    padding: 20px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
header.sticky .logo{
    color: var(--secondary-color);
} 

header .logo{
    color: var(--primary-color);
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
}
header ul {
    position: relative;
    display: flex;
}
header ul li {
    position: relative;
    list-style: none;
}
header ul li a {
    position: relative;
    display: inline-block;
    margin: 0 15px;
    color: var(--primary-color);
    text-decoration: none;
}
header.sticky ul li a{
    color: var(--secondary-color);
}
header ul li a::after{
    content:'';
    width: 0;
    height: 3px;
    background: navy;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
header ul li a:hover::after{
    width: 100%;
}

/*about me section styling                          */
    /*heading styling                                */
.heading{
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.heading h1{
    font-size: 30px;
    font-weight: 600;
}
    /*content box styling                          */
.content{
    display: flex;
    justify-content: space-between;
}
.contentBx{
    padding-right: 30px;
}
.contentBx h2{
    margin-top: 10px;
    font-size: 24px;
    margin-bottom: 10px;
}
.contentBx p span {
    color: #b30037;
    font-weight: bold;
}
.contentBx a {
    color: var(--secondary-color);
    text-decoration: none;
}
.contentBx i {
    margin-right: 15px;
    transition: 0.5s smooth;
}
.contentBx i:hover{
    transform: scale(.9);
    color: rgb(136, 136, 136);
}
/*image about me styling                          */
img{
    max-width: 60%;
}

.img-profile {
    min-width: 90%;
    height: auto;
    max-height: 350px;
    margin: 0px 0 10px 0;
}

.dark-theme .img-profile {
    min-width: 90%;
    height: auto;
    max-height: 350px;
    margin: 0px 0 10px 0;
    background-image: url(/assets/images/skyline.jpg);
}
.w50{
    min-width: 50%;
}
/*services section styling                      */
.services .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services .serviceBx{
    width: 30%;
    padding: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
.services .serviceBx h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.services .serviceBx p{
    margin-bottom: 10px;
}
.services .serviceBx .price{
    font-weight: bold;
    color: rgb(136, 136, 136);
}
/*why section styling                      */
.why .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.why .contentBx{
    width: 45%;
    margin-bottom: 20px;
}
.portfolio{
    background: url(/assets/images/bright-future.jpg);
    background-size: cover;
    background-position: right;
    color: #fff;
}

.dark-theme .portfolio {
    background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) ), url(/assets/images/room-flipped.jpg);
    background-size: cover;
    background-position: right;
    color: #fff;
}

.portfolio .heading h1{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}
.portfolio .heading h2{
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}
.portfolio .content{
    display: flex;
}
.portfolio .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.portfolio .content .portfolioBx{
    width: 25%;
    padding: 20px;
    text-align: center;
}
.portfolio .content .portfolioBx h3{
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}
.portfolio .content .portfolioBx p{
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
}
.portfolio .content .portfolioBx img {
    max-width: 100%;
    max-height: 75%;
    transition: 0.9s;
}
/*portfolio image styling                       */
.imageBx:hover{
    opacity: 0.6;
    transform: scale(.7);
}
/*solutions section styling                      */
.solutions{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}
.solutions .heading h1,
.solutions .heading h2{
    color: #fff;
}
.solutions .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.solutions .solutionBx{
    width: 30%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.solutions .solutionBx .video-placeholder{
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.solutions .solutionBx .video-placeholder:hover{
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}
.solutions .solutionBx .placeholder-content i{
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
}
.solutions .solutionBx .placeholder-content h3{
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}
.solutions .solutionBx .placeholder-content p{
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
/*demos section styling                      */
.demos{
    background: var(--primary-color);
    color: var(--secondary-color);
}
.demos .heading h1,
.demos .heading h2{
    color: var(--secondary-color);
}
.demos .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.demos .demoBx{
    width: 23%;
    padding: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    transition: 0.3s;
}
.demos .demoBx:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.demos .demoBx .demo-placeholder{
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.demos .demoBx .placeholder-content i{
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}
.demos .demoBx .placeholder-content h3{
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}
.demos .demoBx .placeholder-content p{
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}
/*contact section styling                      */
/*form box                                     */
.formBx{
    min-width: 60%;
}
.formBx form{
    display: flex;
    flex-direction: column;
}
.formBx form h3,
.contactInfo h3{
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.formBx form input,
.formBx form textarea {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 16px;
    border: none; 
    outline: none;
    background: var(--secondary-color);
    color: var(--primary-color);
    resize: none;
}
.formBx form textarea {
    min-height: 200px;
}
.formBx form input::placeholder,
.formBx form textarea::placeholder{
    color: var(--primary-color);
}
.formBx form input[type="submit"]{
    max-width: min-content;
    background: var(--secondary-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s smooth;
}
.formBx form input[type="submit"]:hover{
    color: var(--secondary-color);
    border: 1px solid #000;
    background: var(--primary-color);
}
/*contact info styling                   */
.contactInfoBx .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.contactInfoIcon {
    min-width: 40px;
    padding-top: 4px;
    color: var(--secondary-color);
    font-size: 20px;
    column-gap: 10px;
}
.contactInfoIcon a{
    text-decoration: none;
    color: var(--secondary-color);
    margin: -6px 0;
}
/*footer styling                          */
.footer{
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
}
/*responsive styling */
/*responsive   991 px                                      */
@media (max-width: 991px){
    /*header responsive                                   */
    header, header.sticky{
        padding: 20px 50px;
        z-index: 1000;
    }
    header ul li a{
        color: var(--secondary-color);
        font-size: 24px;
        margin: 10px;
    }
    header.sticky .toggle{
        filter: contrast(0.1);
    }
    #icon {
        width: 25px;
        cursor: pointer;
    }
    /*hamburger menu                                       */
    .menu {
        position: fixed;
        top: 75px;
        left: -100%;
        display: block;
        padding: 100px 50px;
        text-align: center;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        opacity: 0.97;
        transition: 0.5s;
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
    .menu.active{
        left: 0;
    }
    .toggle{
        width: 40px;
        height: 40px;
        background: url(../images/menu-icon.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
        filter: contrast(0.1);
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.12);
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    .toggle:hover {
        transform: scale(1.03);
        background-color: rgba(255, 255, 255, 0.2);
    }
    .toggle.active {
        background: url(../images/close.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px;
        cursor: pointer;
    }
    /*section responsive                                        */
    section{
        padding: 100px 50px;
        background: var(--primary-color);
    }
    /*header responsive                                         */
    header .logo{
        font-size: 20px;
    }
    /*landing page responsive                                       */
    .landing-page{
        padding: 150px 50px 100px;
    }
    .landing-page h1{
        font-size: 2.5em;
    }
    .landing-page h2 {
        font-size: 1.3em;
        line-height: 1.4em;
    }
    .landing-page h3 {
        font-size: 1em;
    }
    /*landing page button style                                 */
    .landing-btn{
        margin-top: 15px;
        padding: 12px 25px;
        font-size: 16px;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    /** background: transparent;
        border: 2px solid #fff; **/
    }
    .landing-btn.secondary{
        margin-left: auto;
        margin-right: auto;
    }
    .trust-text {
        text-align: center;
        font-size: 12px;
    }
    /*heading responsive                                        */
    .heading h2{
        font-size: 24px;
    }
    /*about me responsive                                       */
    .contentBx{
        font-size: 15px;
    }
    .content{
        flex-direction: column;
    }
    .w50{
        min-width: 50%;
        margin-bottom: 20px;
    }
    /*portfolio boxes responsive                                         */
    .portfolio .content .portfolioBx{
        width: 100%;
        padding: 10px;
    }
    /*solutions responsive                                         */
    .solutions .solutionBx{
        width: 100%;
        padding: 15px;
    }
    /*demos responsive                                         */
    .demos .demoBx{
        width: 100%;
        padding: 15px;
    }
    /*services responsive                                         */
    .services .serviceBx{
        width: 100%;
        padding: 15px;
    }
    /*why responsive                                         */
    .why .contentBx{
        width: 100%;
    }
    /*contact info responsive                                 */
    .contactInfo{
        margin: 20px 0;
    }
}
@media (max-width: 600px) {
    .toggle{
        background-size: 24px;
        filter: contrast(0.1);
    }
    /*header responsive                                         */
    header, header.sticky{
        padding: 20px 20px;
        z-index: 1000;
    }
    header .header-actions{
        gap: 0.75rem;
    }
    .landing-page{
        padding: 120px 20px 80px;
    }
    .landing-page h1{
        font-size: 2em;
    }
    .landing-page h2{
        font-size: 1.1em;
        line-height: 1.3em;
    }
    #icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        padding: 6px;
        cursor: pointer;
        margin-left: 0;
    }
    /*Section responsive                                      */
    section{
        padding: 80px 20px;
    }
    /* Improve image responsiveness */
    img{
        max-width: 100%;
        height: auto;
    }
    .img-profile {
        width: 100%;
        height: auto;
        max-height: none;
    }
    /* Form improvements for mobile */
    .formBx form input[type="submit"]{
        width: 100%;
        max-width: none;
    }
}
/* Tablet responsive */
@media (max-width: 768px) and (min-width: 601px) {
    .solutions .solutionBx{
        width: 48%;
    }
    .demos .demoBx{
        width: 48%;
    }
    .landing-page h1{
        font-size: 2.8em;
    }
    .landing-page h2{
        font-size: 1.4em;
    }
}