/*==================================================
  SAFELINE WORLDWIDE LIMITED
  Main Stylesheet
  Version: 1.0
==================================================*/

/*==========================
    GOOGLE FONTS
==========================*/

:root{

    --primary:#1E4E8C;
    --secondary:#2D8DB5;
    --accent:#FF7A00;

    --dark:#081B33;
    --dark-2:#102845;

    --white:#ffffff;
    --light:#F5F7FA;

    --text:#4C5A6A;

    --radius:14px;

    --shadow:0 15px 45px rgba(0,0,0,.12);

    --transition:.35s ease;

    --container:1320px;

}

/*==========================
        RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:min(var(--container),92%);

    margin:auto;

}

section{

    padding:110px 0;

}

h1,h2,h3,h4{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    line-height:1.2;

}

h1{

    font-size:68px;

    font-weight:800;

}

h2{

    font-size:44px;

    margin-bottom:20px;

}

h3{

    font-size:24px;

}

p{

    font-size:17px;

    color:var(--text);

}

/*==========================
        BUTTONS
==========================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:linear-gradient(135deg,#1E4E8C,#2D8DB5);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 30px rgba(30,78,140,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid #fff;

    color:#fff;

    border-radius:50px;

    margin-left:18px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}
/*==========================
        HEADER
==========================*/

#header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

}
#header{

    background: rgba(8,27,51,.95);

    backdrop-filter: blur(10px);

}
#header.scrolled{

    background:rgba(8,27,51,.95);

    backdrop-filter:blur(16px);

    box-shadow:0 8px 30px rgba(0,0,0,.15);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:62px;

}

.nav-menu{

    display:flex;

    gap:42px;

}

.nav-menu a{

    color:#ffffff;

    font-weight:500;

    position:relative;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#fff;

    transition:.35s;

}

.nav-menu a:hover::after{

    width:100%;

}

.mobile-toggle{

    display:none;

    color:#fff;

    font-size:30px;

    cursor:pointer;

}
/*==================================================
                HERO SECTION
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:url("../images/hero.jpg") center center/cover no-repeat;

}

/* Dark Overlay */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,27,51,.92) 0%,
        rgba(8,27,51,.82) 45%,
        rgba(8,27,51,.60) 100%
    );

    z-index:1;

}

/* Animated Background */

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:inherit;

    animation:heroZoom 18s ease-in-out infinite alternate;

    z-index:0;

}

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:760px;

    color:#fff;

}

/* Small Heading */

.hero-subtitle{

    display:inline-block;

    color:#2D8DB5;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

/* Main Heading */

.hero h1{

    color:#fff;

    font-size:72px;

    font-weight:800;

    line-height:1.08;

    margin-bottom:28px;

}

.hero h1 span{

    display:block;

    color:var(--primary);

}

/* Paragraph */

.hero p{

    color:rgba(255,255,255,.88);

    font-size:20px;

    line-height:1.9;

    max-width:680px;

    margin-bottom:45px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* Scroll Down */

.scroll-down{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:translateX(-50%);

    z-index:8;

}

.scroll-down span{

    width:34px;

    height:60px;

    border:2px solid rgba(255,255,255,.8);

    border-radius:30px;

    display:block;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:8px;

    height:8px;

    background:#fff;

    left:50%;

    transform:translateX(-50%);

    border-radius:50%;

    top:12px;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:1;

        top:10px;

    }

    100%{

        opacity:0;

        top:34px;

    }

}
/*==================================================
            FLOATING SERVICE CARDS
==================================================*/

.floating-services{

    position:relative;

    margin-top:-90px;

    z-index:50;

}

.floating-services .container{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:24px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:40px 22px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.4s;

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.16);

}

.service-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:22px;

}

.service-card h3{

    font-size:19px;

    color:var(--dark);

    line-height:1.4;

}
/*==================================================
                ANIMATIONS
==================================================*/

.hero-subtitle{

    animation:fadeUp .8s ease forwards;

}

.hero h1{

    animation:fadeUp 1.2s ease forwards;

}

.hero p{

    animation:fadeUp 1.6s ease forwards;

}

.hero-buttons{

    animation:fadeUp 2s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================================
                    ABOUT
==================================================*/

.about{

    background:#fff;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.experience-box{

    position:absolute;

    right:-25px;

    bottom:30px;

    background:var(--primary);

    color:#fff;

    padding:25px;

    border-radius:16px;

    width:220px;

    text-align:center;

    box-shadow:0 20px 40px rgba(30,78,140,.35);

}

.experience-box h2{

    color:#fff;

    font-size:56px;

    margin-bottom:10px;

}

.section-tag{

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

    display:inline-block;

    margin-bottom:15px;

}

.about-content h2{

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:35px 0;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature-item i{

    color:var(--primary);

    font-size:20px;

}
/*==================================================
                    SERVICES
==================================================*/

.services{
    background: var(--light);
    padding: 120px 0;
}

.section-heading{
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-heading .section-tag{
    display: inline-block;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading h2{
    font-size: 46px;
    color: var(--dark);
    margin-bottom: 25px;
}

.section-heading p{
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
}

/*====================================
        SERVICE ROW
====================================*/

.service-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 120px;
}

.service-row:last-child{
    margin-bottom: 0;
}

.service-row.reverse .service-image{
    order:2;
}

.service-row.reverse .service-content{
    order:1;
}

/*====================================
        IMAGE
====================================*/

.service-image{
    position: relative;
}

.service-image img{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    transition:.45s ease;
}

.service-image:hover img{
    transform:scale(1.03);
}

/*====================================
        CONTENT
====================================*/

.service-content span{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:60px;
    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;
}

.service-content h3{

    font-size:36px;

    margin-bottom:22px;

    color:var(--dark);

}

.service-content p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:30px;

}

.service-content ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;

}

.service-content ul li{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:16px;

    color:var(--text);

}

.service-content ul li::before{

    content:"✓";

    width:28px;

    height:28px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(30,78,140,.1);

    color:var(--primary);

    border-radius:50%;

    font-weight:700;

}

/*====================================
        HOVER EFFECT
====================================*/

.service-row{

    transition:.4s;

}

.service-row:hover .service-content h3{

    color:var(--primary);

}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:992px){

.service-row{

    grid-template-columns:1fr;

    gap:45px;

}

.service-row.reverse .service-image,
.service-row.reverse .service-content{

    order:unset;

}

.service-content ul{

    grid-template-columns:1fr;

}

.section-heading h2{

    font-size:38px;

}

.service-content h3{

    font-size:30px;

}

}

@media(max-width:768px){

.services{

    padding:90px 0;

}

.section-heading{

    margin-bottom:60px;

}

.section-heading h2{

    font-size:32px;

}

.service-row{

    margin-bottom:90px;

}

.service-content span{

    width:52px;
    height:52px;
    font-size:20px;

}

.service-content h3{

    font-size:28px;

}

.service-content p{

    font-size:16px;

}

}
/*==================================================
                INDUSTRIES
==================================================*/

.industries{

    background:#ffffff;
    padding:120px 0;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.industry-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid rgba(0,0,0,.05);

}

.industry-card:hover{

    transform:translateY(-12px);

    background:var(--primary);

}

.industry-card i{

    font-size:58px;

    color:var(--primary);

    margin-bottom:25px;

    transition:.4s;

}

.industry-card h3{

    margin-bottom:18px;

    font-size:26px;

    transition:.4s;

}

.industry-card p{

    line-height:1.8;

    transition:.4s;

}

.industry-card:hover i,
.industry-card:hover h3,
.industry-card:hover p{

    color:#fff;

}

/* Responsive */

@media(max-width:992px){

.industries-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.industries-grid{

    grid-template-columns:1fr;

}

}
/*==================================================
                    PROJECTS
==================================================*/

.projects{

    background:var(--light);
    padding:120px 0;

}

.projects-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;

}

.project-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.4s;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-content span{

    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.project-content h3{

    margin:15px 0;
    font-size:28px;

}

.project-content p{

    line-height:1.8;

}

@media(max-width:992px){

.projects-grid{

grid-template-columns:1fr;

}

}
/*==================================================
                    CONTACT
==================================================*/

.contact{

    background:#fff;

    padding:120px 0;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    margin-top:70px;

}

.contact-info{

    background:var(--primary);

    color:#fff;

    padding:45px;

    border-radius:20px;

}

.contact-info h3{

    color:#fff;

    font-size:32px;

    margin-bottom:20px;

}

.contact-info p{

    color:rgba(255,255,255,.9);

}

.contact-item{

    display:flex;

    gap:18px;

    margin-top:35px;

}

.contact-item i{

    font-size:24px;

    width:55px;

    height:55px;

    background:rgba(255,255,255,.12);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.contact-item h4{

    color:#fff;

    margin-bottom:8px;

}

.contact-form{

    background:#F8FAFC;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 40px rgba(0,0,0,.08);

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-bottom:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #d9d9d9;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(30,78,140,.12);

}

.contact-form textarea{

    resize:vertical;

    margin:20px 0 30px;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

}
.map-section{

padding:100px 0;

background:#F5F7FA;

}

.google-map{

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.12);

}

.google-map iframe{

width:100%;

height:500px;

border:none;

}

/*=========================================
        LANGUAGE SELECTOR
=========================================*/

.language-dropdown{

    position:relative;

    list-style:none;

}

.language-btn{

    display:flex;

    align-items:center;

    gap:8px;

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.language-menu{

    position:absolute;

    top:45px;

    right:0;

    width:180px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.3s;

    padding:10px 0;

    z-index:9999;

}

.language-dropdown.open .language-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.language-menu li{

    list-style:none;

}

.language-menu a{

    display:block;

    padding:12px 20px;

    color:#081B33;

    text-decoration:none;

    transition:.3s;

}

.language-menu a:hover{

    background:#f5f7fa;

    color:#C8102E;

}

.active-language{

    font-weight:700;

    color:#C8102E !important;

}