/* ===================================
   SICE SOFTWARE SOLUTIONS
   Premium Website
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    overflow-x:hidden;
}

body{
    overflow-x:hidden;
    width:100%;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

.container{

width:100%;

max-width:1200px;

margin:auto;

padding:0 20px;

}

section{

overflow:hidden;

}

img{

max-width:100%;

height:auto;

display:block;

}

/* =========================
HEADER
========================= */

 /* ===========================
PREMIUM HEADER
===========================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

transition:.4s;

background:transparent;

}

header.scrolled{

background:#ffffff;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

header .container{

display:flex;

justify-content:space-between;

align-items:center;

height:90px;

}

.logo img{

height:65px;

}

nav ul{

display:flex;

list-style:none;

}

nav ul li{

margin-left:35px;

}

nav ul li a{

position:relative;

text-decoration:none;

color:#fff;

font-weight:600;

transition:.3s;

}

header.scrolled nav ul li a{

color:#222;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:#ff7b00;

transition:.4s;

}

nav ul li a:hover::after,

nav ul li a.active::after{

width:100%;

}

.desktop-btn{

margin-left:30px;

}

#menu-btn{

display:none;

font-size:28px;

cursor:pointer;

color:#fff;

}

header.scrolled #menu-btn{

color:#222;

}
 
 
 
/* =========================
BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    background:#0056d2;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-3px);
    background:#ff7b00;
}

.btn-outline{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    margin-left:15px;
    transition:.4s;
}

.btn-outline:hover{
    background:#fff;
    color:#0056d2;
}

/* =========================
HERO SECTION
========================= */

.hero{
    position:relative;
    height:100vh;
    background:linear-gradient(135deg,#003d99,#0b74ff);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-220px;
    left:-200px;
}

.hero::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-180px;
    right:-150px;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.25);
}

.hero-content{
    position:relative;
    z-index:10;
    width:90%;
    max-width:900px;
}

/* Hero Text Slider */

.hero-slide{

position:absolute;

width:100%;

left:0;

top:0;

opacity:0;

transform:translateY(30px);

transition:all .8s ease;

pointer-events:none;

}

.hero-slide.active{

opacity:1;

transform:translateY(0);

position:relative;

pointer-events:auto;

}

.hero-slide h1{

font-size:68px;

font-weight:800;

margin-bottom:25px;

line-height:1.2;

}

.hero-slide p{

font-size:22px;

color:#f2f2f2;

max-width:750px;

margin:auto;

line-height:1.8;

}

.hero-buttons{

margin-top:45px;

}

.hero h1{
    font-size:68px;
    font-weight:800;
    margin-bottom:25px;
    line-height:1.2;
}

.hero p{
    font-size:22px;
    margin-bottom:40px;
    color:#e8eefc;
}

.hero-buttons{
    margin-top:25px;
}

/* =========================
LOADER
========================= */

#loader{
    position:fixed;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.spinner{
    width:60px;
    height:60px;
    border:6px solid #ddd;
    border-top:6px solid #0056d2;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* ===========================
ABOUT SECTION
=========================== */

.about{

padding:100px 0;

background:#fff;

}

.about-container{

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

flex-wrap:nowrap;

}

.about-image{

width:50%;

}

.about-content{

width:50%;

}

.about-image img{

width:100%;

display:block;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.15);

transition:.5s;

object-fit:cover;

}

.about-image img:hover{

transform:scale(1.03);

}

.section-title{

display:inline-block;

background:#eaf2ff;

color:#0056d2;

padding:8px 20px;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.about-content h2{

font-size:42px;

margin-bottom:20px;

line-height:1.3;

color:#0d1b3f;

}

.about-content p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.about-features{

display:flex;

flex-direction:column;

gap:20px;

}

.feature-card{

display:flex;

align-items:center;

gap:20px;

background:#fff;

padding:20px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.feature-card:hover{

transform:translateY(-8px);

}

.feature-card i{

font-size:32px;

color:#0056d2;

min-width:45px;

}

.feature-card h4{

margin-bottom:8px;

font-size:20px;

color:#0d1b3f;

}

.feature-card p{

margin:0;

font-size:15px;

}

/* ===========================
STATISTICS
=========================== */

.stats{

padding:90px 0;

background:linear-gradient(135deg,#0056d2,#0b74ff);

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat-box{

background:rgba(255,255,255,.1);

backdrop-filter:blur(10px);

padding:40px 25px;

border-radius:20px;

text-align:center;

color:#fff;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.stat-box:hover{

transform:translateY(-10px);

background:#ffffff;

color:#0056d2;

}

.stat-box i{

font-size:55px;

margin-bottom:20px;

color:#ff9800;

transition:.3s;

}

.stat-box:hover i{

transform:rotate(10deg);

}

.stat-box h2{

font-size:50px;

font-weight:700;

margin-bottom:10px;

}

.stat-box h2::after{

content:"+";

}

.stat-box p{

font-size:18px;

font-weight:500;

}

/*====================================
SERVICES
====================================*/

.services{

padding:100px 0;

background:#f8fbff;

}

.section-heading{

text-align:center;

margin-bottom:60px;

}

.section-heading span{

background:#eaf2ff;

padding:8px 20px;

border-radius:30px;

font-weight:600;

color:#0056d2;

display:inline-block;

margin-bottom:20px;

}

.section-heading h2{

font-size:42px;

margin-bottom:20px;

color:#0d1b3f;

}

.section-heading p{

max-width:700px;

margin:auto;

line-height:1.8;

color:#666;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.service-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:0;

height:5px;

width:0;

background:linear-gradient(90deg,#ff8c00,#ff6b00);

transition:.4s;

border-radius:10px;

}
.service-card:hover::before{

width:100%;

}

.service-icon{

width:80px;

height:80px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#0056d2,#0b74ff);

margin-bottom:25px;

}

.service-icon i{

font-size:34px;

color:#fff;

}

.service-card h3{

margin-bottom:18px;

font-size:24px;

color:#0d1b3f;

}

.service-card p{

line-height:1.8;

color:#666;

margin-bottom:25px;

}

.service-card a{

text-decoration:none;

font-weight:600;

color:#0056d2;

}

.service-card:hover .service-icon{

transform:rotate(10deg) scale(1.08);

transition:.4s;

}

/*====================================
TECHNOLOGIES
====================================*/

.technologies{

padding:100px 0;

background:#ffffff;

}

.tech-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:60px;

}

.tech-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

cursor:pointer;

border:1px solid #eee;

}

.tech-card:hover{

transform:translateY(-12px);

border-color:#ff8c00;

box-shadow:0 20px 40px rgba(0,86,210,.18);

}

.tech-card i{

font-size:60px;

margin-bottom:20px;

transition:.4s;

}

/* Individual Icon Colors */

.fa-html5{color:#e34f26;}

.fa-css3-alt{color:#1572b6;}

.fa-js{color:#f7df1e;}

.fa-bootstrap{color:#7952b3;}

.fa-react{color:#61dafb;}

.fa-angular{color:#dd0031;}

.fa-vuejs{color:#42b883;}

.fa-php{color:#777bb4;}

.fa-laravel{color:#ff2d20;}

.fa-python{color:#3776ab;}

.fa-node-js{color:#3c873a;}

.fa-database{color:#0056d2;}

.tech-card:hover i{

transform:scale(1.2) rotate(8deg);

}

.tech-card h4{

margin-top:15px;

font-size:20px;

color:#0d1b3f;

transition:.3s;

}

.tech-card:hover h4{

color:#ff8c00;

}

/*====================================
WHY CHOOSE US
====================================*/

.why-us{

padding:100px 0;

background:#f8fbff;

}

.why-container{

display:flex;

align-items:center;

gap:60px;

}

.why-image{

width:50%;

}

.why-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

transition:.4s;

}

.why-image img:hover{

transform:scale(1.03);

}

.why-content{

width:50%;

}

.why-content h2{

font-size:42px;

margin:20px 0;

color:#0d1b3f;

}

.why-content p{

line-height:1.8;

color:#666;

margin-bottom:35px;

}

.why-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

}

.why-card{

display:flex;

gap:15px;

background:#fff;

padding:20px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.why-card:hover{

transform:translateY(-8px);

border-left:5px solid #ff8c00;

}

.why-card i{

font-size:28px;

color:#ff8c00;

margin-top:5px;

}

.why-card h4{

margin-bottom:8px;

color:#0d1b3f;

}

.why-card p{

margin:0;

font-size:14px;

}


/*====================================
PROCESS
====================================*/

.process{

padding:100px 0;

background:#ffffff;

}

.process-wrapper{

max-width:900px;

margin:60px auto 0;

position:relative;

}

.process-wrapper::before{

content:"";

position:absolute;

left:40px;

top:0;

width:4px;

height:100%;

background:#0056d2;

}

.process-item{

display:flex;

gap:30px;

margin-bottom:45px;

position:relative;

}

.process-icon{

width:80px;

height:80px;

background:linear-gradient(135deg,#ff8c00,#ff6b00);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

box-shadow:0 10px 30px rgba(255,140,0,.3);

z-index:2;

transition:.4s;

}

.process-icon i{

font-size:34px;

color:#fff;

}

.process-item:hover .process-icon{

transform:scale(1.1) rotate(10deg);

}

.process-content{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

flex:1;

transition:.4s;

}

.process-content:hover{

transform:translateY(-8px);

}

.process-content h3{

color:#0d1b3f;

margin-bottom:12px;

font-size:24px;

}

.process-content p{

color:#666;

line-height:1.8;

}

/*====================================
PORTFOLIO
====================================*/

.portfolio{

padding:100px 0;

background:#f8fbff;

}

.portfolio-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.portfolio-card{

position:relative;

overflow:hidden;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.12);

cursor:pointer;

}

.portfolio-card{

overflow:hidden;

}

.portfolio-card img{

width:100%;

height:280px;

object-fit:cover;

display:block;

}

.portfolio-overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,86,210,.92);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

opacity:0;

transition:.5s;

padding:20px;

text-align:center;

color:#fff;

}

.portfolio-overlay h3{

font-size:28px;

margin-bottom:10px;

}

.portfolio-overlay p{

margin-bottom:20px;

}

.portfolio-overlay a{

padding:12px 25px;

background:#ff8c00;

color:#fff;

text-decoration:none;

border-radius:30px;

font-weight:600;

transition:.3s;

}

.portfolio-overlay a:hover{

background:#fff;

color:#0056d2;

}

.portfolio-card:hover img{

transform:scale(1.15);

}

.portfolio-card:hover .portfolio-overlay{

opacity:1;

}

/*====================================
TESTIMONIALS
====================================*/

.testimonials{

padding:100px 0;

background:#fff;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.testimonial-card{

background:#f8fbff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.stars{

color:#ffb400;

font-size:20px;

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.9;

color:#666;

margin-bottom:30px;

font-style:italic;

}

.client-info{

display:flex;

align-items:center;

gap:15px;

}

.client-info img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

border:4px solid #0056d2;

}

.client-info h4{

margin-bottom:5px;

color:#0d1b3f;

}

.client-info span{

color:#777;

font-size:14px;

}

/*====================================
CONTACT
====================================*/

.contact{

padding:100px 0;

background:#f8fbff;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1.2fr;

gap:50px;

margin-top:60px;

}

.info-box{

display:flex;

gap:20px;

margin-bottom:25px;

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.info-box:hover{

transform:translateX(10px);

}

.info-box i{

width:60px;

height:60px;

background:#0056d2;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:24px;

flex-shrink:0;

}

.info-box:hover i{

background:#ff8c00;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

outline:none;

transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#0056d2;

}

.contact-form button{

width:100%;

padding:16px;

border:none;

background:#0056d2;

color:#fff;

font-size:18px;

font-weight:600;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#ff8c00;

}

/*====================================
FOOTER
====================================*/

.footer{

background:#08142c;

padding:80px 0 20px;

color:#fff;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:40px;

margin-bottom:50px;

}

.footer-logo{

width:180px;

margin-bottom:20px;

}

.footer h3{

margin-bottom:20px;

font-size:22px;

}

.footer p{

line-height:1.8;

color:#c7c7c7;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin-bottom:12px;

color:#c7c7c7;

}

.footer ul li a{

text-decoration:none;

color:#c7c7c7;

transition:.3s;

}

.footer ul li a:hover{

color:#ff8c00;

padding-left:8px;

}

.footer-social{

display:flex;

gap:15px;

margin-top:20px;

}

.footer-social a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

background:#0056d2;

color:#fff;

border-radius:50%;

transition:.3s;

text-decoration:none;

}

.footer-social a:hover{

background:#ff8c00;

transform:translateY(-5px);

}

.footer hr{

border:none;

height:1px;

background:#2b3853;

margin:30px 0;

}

.copyright{

text-align:center;

color:#aaa;

}