/*====================================================
    Specialized Retail Group
    Main Stylesheet
    Version: 2.0
======================================================*/


/*====================================================
    Google Font
======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


/*====================================================
    CSS Variables
======================================================*/

:root {

    --primary: #1E90FF;
    --primary-dark: #1565C0;

    --accent: #00C2A8;

    --background: #08111F;
    --background-light: #121D2D;
    --background-card: #172538;

    --white: #FFFFFF;
    --light: #D9E2EC;
    --grey: #9AA8B8;

    --border: rgba(255,255,255,.08);

    --shadow-sm: 0 8px 20px rgba(0,0,0,.18);
    --shadow-lg: 0 20px 45px rgba(0,0,0,.30);

    --transition: all .35s ease;

    --radius: 18px;

}


/*====================================================
    Reset
======================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Montserrat',sans-serif;

    background:var(--background);

    color:var(--light);

    overflow-x:hidden;

    line-height:1.8;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    padding:0;
    margin:0;

}


/*====================================================
    Typography
======================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--white);

    font-weight:700;

    line-height:1.2;

}

.hero-title{

    font-size:clamp(3rem,7vw,5.5rem);

    font-weight:800;

    margin-bottom:25px;

}

.hero-text{

    font-size:1.2rem;

    max-width:650px;

    color:var(--light);

    margin-bottom:40px;

}

.section-title{

    font-size:clamp(2rem,5vw,3rem);

    margin-bottom:20px;

}

.section-subtitle{

    margin-top: 150px;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    font-size:.9rem;

    display:inline-block;

    margin-bottom:15px;

}

.section-description{

    color:var(--grey);

    max-width:750px;

    margin:auto;

}

.section-text{

    color:var(--grey);

    margin-bottom:20px;

}


/*====================================================
    General Sections
======================================================*/

section{

    position:relative;

    padding:100px 0;

}

.section-dark{

    background:var(--background);

}

.section-light{

    background:var(--background-light);

}


/*====================================================
    Buttons
======================================================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(30,144,255,.35);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.35);

}

.btn-outline-light:hover{

    background:var(--white);

    color:var(--background);

}


/*====================================================
    Navigation
======================================================*/

.custom-navbar{

    padding:18px 0;

    transition:var(--transition);

    background:transparent;

    z-index:999;

}

.custom-navbar.scrolled{

    background:rgba(8,17,31,.92);

    backdrop-filter:blur(16px);

    box-shadow:var(--shadow-sm);

}

.navbar-logo{

    height:65px;

    transition:var(--transition);

}

.custom-navbar.scrolled .navbar-logo{

    height:55px;

}

.nav-link{

    color:var(--light);

    margin-left:20px;

    font-weight:600;

    position:relative;

}

.nav-link:hover{

    color:var(--white);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

.active-nav{

    color:var(--white)!important;

}

.active-nav::after{

    width:100%;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}


/*====================================================
    Hero
======================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:url("images/hero.jpg") center center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(8,17,31,.82),

        rgba(8,17,31,.92)

    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    margin-top:150px;

    display:inline-block;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero-buttons{

    margin-top:35px;

}

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.25);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    z-index:3;

    animation:bounce 2s infinite;

}

.scroll-down:hover{

    background:var(--primary);

    color:white;

}

.about-preview-image{

    max-width:420px;

    margin:auto;

    filter:drop-shadow(0 20px 45px rgba(0,0,0,.4));

}


/*====================================================
    About Preview
======================================================*/

#about-preview{

    background:var(--background);

}

#about-preview .section-text{

    font-size:1.05rem;

}

.about-preview-image{

    transition:var(--transition);

}

.about-preview-image:hover{

    transform:scale(1.03);

}


/*====================================================
    Our Companies
======================================================*/

.companies-section{

    background:var(--background-light);

}

.company-card{

    background:var(--background-card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:45px 35px;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

    height:100%;

    box-shadow:var(--shadow-sm);

}

.company-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--primary),var(--accent));

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.company-card:hover::before{

    transform:scaleX(1);

}

.company-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(30,144,255,.35);

}

.company-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:rgba(30,144,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.company-icon i{

    font-size:34px;

    color:var(--primary);

}

.company-card h3{

    margin-bottom:20px;

}

.company-card p{

    color:var(--grey);

    margin-bottom:30px;

}

.company-link{

    color:var(--primary);

    font-weight:700;

}

.company-link i{

    margin-left:10px;

    transition:.3s;

}

.company-link:hover{

    color:var(--accent);

}

.company-link:hover i{

    transform:translateX(8px);

}


/*====================================================
    Why Choose Us
======================================================*/

.why-us-section{

    background:var(--background);

}

.why-image{

    width:100%;

    border-radius:22px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.why-image:hover{

    transform:scale(1.02);

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-top:30px;

}

.feature-item i{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(30,144,255,.15);

    color:var(--primary);

    font-size:22px;

    flex-shrink:0;

}

.feature-item h5{

    margin-bottom:8px;

}

.feature-item p{

    margin-bottom:0;

    color:var(--grey);

}


/*====================================================
    Featured Projects
======================================================*/

.featured-projects{

    background:var(--background-light);

}

.project-preview-card{

    background:var(--background-card);

    border-radius:20px;

    overflow:hidden;

    transition:var(--transition);

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    height:100%;

}

.project-preview-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.project-preview-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.project-preview-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-content h4{

    margin-bottom:15px;

}

.project-content p{

    color:var(--grey);

    margin-bottom:0;

}


/*====================================================
    Utility Classes
======================================================*/

.text-gradient{

    background:linear-gradient(90deg,var(--primary),var(--accent));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.rounded-xl{

    border-radius:24px;

}

.shadow-hover{

    transition:var(--transition);

}

.shadow-hover:hover{

    box-shadow:var(--shadow-lg);

}

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}



/*====================================================
    Statistics Section
======================================================*/

.stats-section{

    background:var(--background);

}

.stat-card{

    background:var(--background-card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:45px 25px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(30,144,255,.35);

}

.stat-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.stat-card h2{

    font-size:2.6rem;

    font-weight:800;

    margin-bottom:10px;

}

.stat-card p{

    color:var(--grey);

    margin:0;

}


/*====================================================
    CTA Section
======================================================*/

.cta-section{

    background:linear-gradient(135deg,#1E90FF,#1565C0);

    padding:90px 0;

}

.cta-section h2{

    color:white;

    margin-bottom:20px;

}

.cta-section p{

    color:rgba(255,255,255,.9);

    margin:0;

}

.cta-section .btn{

    background:white;

    color:var(--primary);

    font-weight:700;

    border:none;

}

.cta-section .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}


/*====================================================
    Footer
======================================================*/

.footer{

    background:#050B14;

    padding:80px 0 30px;

}

.footer-logo{

    max-width:180px;

}

.footer-text{

    color:var(--grey);

    line-height:1.8;

}

.footer h5{

    margin-bottom:25px;

}

.footer-links li{

    margin-bottom:15px;

    color:var(--grey);

}

.footer-links a{

    color:var(--grey);

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-divider{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 30px;

}

.copyright{

    color:var(--grey);

    margin:0;

}

.privacy-link{

    color:var(--grey);

}

.privacy-link:hover{

    color:var(--primary);

}


/*====================================================
    Back To Top Button
======================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

    box-shadow:var(--shadow-sm);

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

    background:var(--accent);

}


/*====================================================
    Animations
======================================================*/

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateX(-50%) translateY(0);

    }

    40%{

        transform:translateX(-50%) translateY(-10px);

    }

    60%{

        transform:translateX(-50%) translateY(-5px);

    }

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-title,
.hero-text,
.hero-buttons,
.hero-tag{

    animation:fadeIn 1s ease forwards;

}

.hero-text{

    animation-delay:.15s;

}

.hero-buttons{

    animation-delay:.3s;

}


/*====================================================
    Scrollbar
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111F;

}

::-webkit-scrollbar-thumb{

    background:#1E90FF;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#00C2A8;

}


/*====================================================
    Responsive
======================================================*/

@media (max-width:991px){

    .custom-navbar{

        background:rgba(8,17,31,.96);

        backdrop-filter:blur(12px);

        padding:15px 0;

    }

    .navbar-collapse{

        margin-top:20px;

    }

    .nav-link{

        margin:12px 0;

    }

    .hero{

        text-align:center;

    }

    .hero-buttons{

        display:flex;

        flex-direction:column;

        gap:15px;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .section-title{

        font-size:2.3rem;

    }

    .feature-item{

        align-items:flex-start;

    }

    .cta-section{

        text-align:center;

    }

    .cta-section .text-lg-end{

        text-align:center !important;

        margin-top:30px;

    }

}

@media (max-width:768px){

    section{

        padding:70px 0;

    }

    .hero-title{

        font-size:2.7rem;

    }

    .hero-text{

        font-size:1rem;

    }

    .company-card{

        padding:35px 25px;

    }

    .project-preview-card img{

        height:220px;

    }

    .stat-card{

        padding:35px 20px;

    }

    .footer{

        text-align:center;

    }

    .footer-logo{

        margin:0 auto 25px;

    }

    .footer-divider{

        margin:40px 0 25px;

    }

}

@media (max-width:576px){

    .hero-title{

        font-size:2.2rem;

    }

    .hero{

        min-height:90vh;

    }

    .btn{

        padding:12px 28px;

    }

    .section-title{

        font-size:2rem;

    }

    .about-preview-image{

        max-width:260px;

    }

    .company-icon{

        width:65px;

        height:65px;

    }

    .company-icon i{

        font-size:28px;

    }

    .back-to-top{

        width:48px;

        height:48px;

        right:20px;

        bottom:20px;

    }

}


/*====================================================
    Gallery
======================================================*/

.gallery-image{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}

.gallery-image:hover{

    transform:scale(1.02);

}