/*====================================================

 AXIS SOLUTIONS LLC
 Smart Solutions for Your Business

 Author : Axis Solutions LLC
 Version : 1.0

======================================================*/


/*====================================================

ROOT VARIABLES

======================================================*/

:root{

    --primary:#c8102e;

    --primary-dark:#9f0d23;

    --secondary:#1f2937;

    --dark:#121212;

    --light:#f5f7fa;

    --white:#ffffff;

    --gray:#6b7280;

    --border:#e5e7eb;

    --success:#16a34a;

    --shadow-sm:0 4px 12px rgba(0,0,0,.08);

    --shadow-md:0 10px 25px rgba(0,0,0,.10);

    --shadow-lg:0 20px 45px rgba(0,0,0,.15);

    --radius:12px;

    --transition:.35s ease;

}


/*====================================================

RESET

======================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Inter',sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--secondary);

    background:var(--white);

    overflow-x:hidden;

}


img{

    max-width:100%;

    display:block;

}


a{

    text-decoration:none;

    transition:var(--transition);

}


ul{

    list-style:none;

}


button{

    cursor:pointer;

    border:none;

    font-family:inherit;

}


section{

    padding:110px 0;

}


.container{

    width:min(1200px,92%);

    margin:auto;

}


/*====================================================

TYPOGRAPHY

======================================================*/

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    line-height:1.2;

}


h1{

    font-size:3.9rem;

    font-weight:700;

}


h2{

    font-size:2.8rem;

    margin-bottom:20px;

}


h3{

    font-size:1.5rem;

}


p{

    color:var(--gray);

}


.section-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;

}


.section-header span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

}


.section-header p{

    margin-top:20px;

}


/*====================================================

BUTTONS

======================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:var(--transition);

}


.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}


.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:8px;

    margin-left:15px;

    font-weight:600;

}


.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


.btn-header{

    background:var(--primary);

    color:#fff;

    padding:12px 22px;

    border-radius:8px;

    font-size:.95rem;

    font-weight:600;

}


.btn-header:hover{

    background:var(--primary-dark);

}


/*====================================================

HEADER

======================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:9999;

    box-shadow:var(--shadow-sm);

}


.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:85px;

}


.logo img{

    height:58px;

}


.menu{

    display:flex;

    gap:35px;

}


.menu a{

    color:var(--secondary);

    font-weight:600;

    position:relative;

}


.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}


.menu a:hover::after{

    width:100%;

}


.header-right{

    display:flex;

    align-items:center;

    gap:18px;

}


.language-btn{

    width:44px;

    height:44px;

    border-radius:50%;

    background:#f3f4f6;

    font-weight:700;

}


.language-btn:hover{

    background:var(--primary);

    color:#fff;

}


.mobile-menu{

    display:none;

    background:none;

    font-size:2rem;

    color:var(--primary);

}

/*====================================================

HERO

======================================================*/

.hero{

    padding-top:160px;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:linear-gradient(135deg,#ffffff 0%,#f5f7fa 100%);

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-content h1{

    margin:25px 0;

    max-width:700px;

}

.hero-content p{

    font-size:1.1rem;

    max-width:650px;

    margin-bottom:40px;

}

.hero-tag{

    display:inline-block;

    background:#ffe9ed;

    color:var(--primary);

    padding:10px 20px;

    border-radius:40px;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:1px;

}

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:20px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:var(--secondary);

}

.hero-features i{

    color:var(--success);

}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.15));

}


/*====================================================

ABOUT

======================================================*/

.about-preview{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:16px;

    box-shadow:var(--shadow-lg);

}

.about-content h3{

    font-size:2rem;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

}

.about-list{

    margin-top:35px;

    display:grid;

    gap:18px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:15px;

    font-weight:600;

}

.about-list i{

    color:var(--primary);

    font-size:1.2rem;

}


/*====================================================

WHY CHOOSE US

======================================================*/

.why-us{

    background:var(--light);

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    padding:40px 30px;

    border-radius:14px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    text-align:center;

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.feature-card i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:18px;

}


/*====================================================

STATISTICS

======================================================*/

.statistics{

    background:var(--primary);

    color:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

}

.stat-box h2{

    color:#fff;

    font-size:3.3rem;

    margin-bottom:12px;

}

.stat-box span{

    font-weight:600;

    letter-spacing:1px;

}


/*====================================================

PROCESS

======================================================*/

.process{

    background:#fff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.step{

    background:#fff;

    border-radius:16px;

    padding:40px 30px;

    box-shadow:var(--shadow-sm);

    text-align:center;

    transition:var(--transition);

}

.step:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-weight:700;

    font-size:1.5rem;

}

.step h3{

    margin-bottom:18px;

}


/*====================================================

FLOAT ANIMATION

======================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================================================

SERVICES

======================================================*/

.services{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    padding:40px 35px;

    border-radius:16px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--primary);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#ffe9ed;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.service-icon i{

    font-size:2.2rem;

    color:var(--primary);

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.service-card a:hover{

    gap:16px;

}


/*====================================================

TECHNOLOGIES

======================================================*/

.technologies{

    background:#fff;

}

.technology-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.technology-item{

    background:#fff;

    border:1px solid var(--border);

    border-radius:14px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

}

.technology-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

    border-color:var(--primary);

}

.technology-item i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:20px;

}

.technology-item h4{

    font-size:1.15rem;

}


/*====================================================

PROJECTS

======================================================*/

.projects-preview{

    background:var(--light);

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.project-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.project-content{

    padding:30px;

}

.project-content h3{

    margin-bottom:15px;

}


/*====================================================

TESTIMONIALS

======================================================*/

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.testimonial-card{

    background:#fff;

    border-radius:16px;

    padding:45px;

    box-shadow:var(--shadow-md);

    position:relative;

}

.testimonial-card::before{

    content:"“";

    position:absolute;

    top:20px;

    left:30px;

    font-size:5rem;

    color:#f3d4da;

    font-family:serif;

}

.testimonial-card p{

    position:relative;

    z-index:2;

    margin-bottom:30px;

    font-style:italic;

}

.testimonial-card h4{

    color:var(--primary);

}


/*====================================================

CALL TO ACTION

======================================================*/

.cta-section{

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

    text-align:center;

}

.cta-section h2{

    color:#fff;

    margin-bottom:25px;

    font-size:3rem;

}

.cta-section p{

    color:#fff;

    max-width:760px;

    margin:0 auto 40px;

    opacity:.95;

}

.cta-section .btn{

    background:#fff;

    color:var(--primary);

    font-weight:700;

}

.cta-section .btn:hover{

    background:#f3f4f6;

}


/*====================================================

SECTION SPACING HELPERS

======================================================*/

.mt-1{

    margin-top:20px;

}

.mt-2{

    margin-top:40px;

}

.mt-3{

    margin-top:60px;

}

.mb-1{

    margin-bottom:20px;

}

.mb-2{

    margin-bottom:40px;

}

.mb-3{

    margin-bottom:60px;

}

.text-center{

    text-align:center;

}

/*====================================================

CONTACT PREVIEW

======================================================*/

.contact-preview{

    background:var(--light);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:60px;

    align-items:start;

}

.contact-info h2{

    margin-bottom:25px;

}

.contact-info p{

    margin-bottom:20px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:30px;

}

.contact-item i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.3rem;

    flex-shrink:0;

}

.contact-card{

    background:#fff;

    padding:45px;

    border-radius:16px;

    box-shadow:var(--shadow-lg);

}

.contact-card h3{

    margin-bottom:30px;

}

.contact-card ul{

    display:grid;

    gap:18px;

}

.contact-card li{

    color:var(--secondary);

    font-weight:500;

}


/*====================================================

FOOTER

======================================================*/

.footer{

    background:#111827;

    color:#d1d5db;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:45px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer h3{

    color:#fff;

    margin-bottom:25px;

    font-size:1.2rem;

}

.footer p{

    color:#d1d5db;

    margin-bottom:12px;

}

.footer ul{

    display:grid;

    gap:12px;

}

.footer a{

    color:#d1d5db;

}

.footer a:hover{

    color:#fff;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

}

.social-links a:hover{

    background:var(--primary);

    transform:translateY(-4px);

}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.08);

    margin:55px 0 30px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.footer-bottom p{

    margin:0;

}


/*====================================================

ANIMATIONS

======================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.zoom{

    overflow:hidden;

}

.zoom img{

    transition:.5s;

}

.zoom:hover img{

    transform:scale(1.08);

}

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    box-shadow:var(--shadow-lg);

}


/*====================================================

RESPONSIVE

======================================================*/

@media(max-width:1100px){

.hero-grid,

.about-grid,

.contact-grid{

grid-template-columns:1fr;

}

.features-grid,

.process-grid,

.stats-grid,

.services-grid,

.projects-grid,

.technology-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

h1{

font-size:2.8rem;

}

h2{

font-size:2.1rem;

}

section{

padding:80px 0;

}

.navbar{

height:75px;

}

.menu{

display:none;

}

.mobile-menu{

display:block;

}

.hero{

padding-top:120px;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.about-grid,

.contact-grid{

gap:40px;

}

.services-grid,

.projects-grid,

.features-grid,

.process-grid,

.technology-grid,

.stats-grid,

.testimonial-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-bottom{

flex-direction:column;

}

.social-links{

justify-content:center;

}

.contact-card{

padding:35px;

}

}


@media(max-width:480px){

.container{

width:94%;

}

.btn,

.btn-outline{

width:100%;

margin:8px 0;

}

.hero-buttons{

flex-direction:column;

}

.hero-image img{

max-width:340px;

}

.logo img{

height:46px;

}

.section-header{

margin-bottom:50px;

}

}


/*====================================================

END OF FILE

Axis Solutions LLC
Smart Solutions for Your Business

======================================================*/