/*
Theme Name: JA Technologies
Author: JA Technologies
Version: 1.0
*/

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    overflow-x:hidden;
    color:#222;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    background:rgba(2,8,23,0.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    padding:18px 0;

    transition:0.4s;
}

/* NAVBAR */

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo img{
    height:70px;
    object-fit:contain;
}

/* MENU */

.navbar ul{
    display:flex;
    align-items:center;
    list-style:none;
}

.navbar ul li{
    margin:0 18px;
    position:relative;

    transform:translateY(0);
    transition:0.3s;
}

.navbar ul li:hover{
    transform:translateY(-2px);
}

.navbar ul li a{

    text-decoration:none;

    /* SAME AS J COLOR */

    color:#0f8fff;

    font-size:15px;
    font-weight:600;

    transition:0.4s ease;

    letter-spacing:0.5px;

    position:relative;
}

/* SAME AS A COLOR */

.navbar ul li a:hover{

    color:#ffffff;

    text-shadow:
    0 0 10px rgba(255,255,255,0.8),
    0 0 20px rgba(255,255,255,0.6);
}

/* ANIMATED BORDER */

.navbar ul li a::before{

    content:'';

    position:absolute;

    width:0%;
    height:2px;

    bottom:-8px;
    left:0;

    background:linear-gradient(
        90deg,
        #0f8fff,
        #ffffff
    );

    transition:0.4s;
}

.navbar ul li a:hover::before{
    width:100%;
}

/* NAV BUTTON */

.nav-btn{

    background:#0f8fff;

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:
    0 0 20px rgba(15,143,255,0.35);
}

.nav-btn:hover{

    background:#ffffff;

    color:#0f8fff;

    transform:translateY(-3px);
}

/* HERO SECTION */

.hero-section{

    min-height:100vh;

    background:
    linear-gradient(
        rgba(2,8,23,0.92),
        rgba(2,8,23,0.95)
    ),
    url('images/bg-glow.png');

    background-size:cover;
    background-position:center;

    padding-top:160px;

    position:relative;

    overflow:hidden;
}

/* HERO GLOW EFFECT */

.hero-section::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    background:#0f8fff;

    filter:blur(160px);

    top:-250px;
    right:-200px;

    opacity:0.35;
}

.hero-section::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:#ffffff;

    filter:blur(180px);

    bottom:-250px;
    left:-150px;

    opacity:0.05;
}

/* HERO GRID */

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    position:relative;

    z-index:2;
}

/* HERO CONTENT */

.hero-content h1{

    color:#fff;

    font-size:72px;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;
}

.hero-content h1 span{

    color:#0f8fff;

    text-shadow:
    0 0 20px rgba(15,143,255,0.45);
}

.hero-content p{

    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:650px;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
}

.primary-btn{

    background:#0f8fff;

    color:#fff;

    padding:16px 38px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:
    0 10px 30px rgba(15,143,255,0.35);
}

.primary-btn:hover{

    background:#fff;

    color:#0f8fff;

    transform:translateY(-4px);
}

.secondary-btn{

    border:1px solid rgba(255,255,255,0.25);

    color:#fff;

    padding:16px 38px;

    border-radius:12px;

    text-decoration:none;

    transition:0.4s;

    backdrop-filter:blur(8px);
}

.secondary-btn:hover{

    background:#fff;

    color:#000;
}

/* HERO IMAGE */

.hero-image{
    position:relative;
}

.hero-image img{

    width:100%;

    animation:floatImage 5s ease-in-out infinite;

    filter:
    drop-shadow(0 20px 50px rgba(15,143,255,0.25));
}

/* FLOATING ANIMATION */

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* FEATURES */

.features-section{

    padding:90px 0;

    margin-top:-70px;

    position:relative;

    z-index:5;
}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:28px;
}

.feature-card{

    background:#fff;

    padding:40px 30px;

    border-radius:22px;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

    transition:0.4s;
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 60px rgba(15,143,255,0.15);
}

.feature-card h3{

    margin-bottom:18px;

    color:#020817;

    font-size:22px;
}

.feature-card p{

    color:#666;

    line-height:1.8;
}

/* ABOUT */

.about-section{
    padding:130px 0;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.12);
}

.about-content span{

    color:#0f8fff;

    font-weight:700;

    letter-spacing:2px;
}

.about-content h2{

    font-size:52px;

    margin:20px 0 30px;

    line-height:1.2;
}

.about-content h2 span{
    color:#0f8fff;
}

.about-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

    font-size:17px;
}

/* STATS */

.stats-section{

    background:#020817;

    padding:90px 0;
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;
}

.stat-box{

    text-align:center;

    color:#fff;
}

.stat-box h2{

    color:#0f8fff;

    font-size:58px;

    margin-bottom:10px;
}

.stat-box p{

    color:#cbd5e1;
}

/* CONTACT */

.contact-section{
    padding:130px 0;
}

.contact-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;
}

.contact-form{

    background:#fff;

    padding:55px;

    border-radius:25px;

    box-shadow:
    0 15px 50px rgba(0,0,0,0.08);
}

.contact-form h2{

    margin-bottom:35px;

    font-size:36px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    margin-bottom:22px;

    border:1px solid #dbe3ef;

    border-radius:12px;

    font-size:15px;

    transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#0f8fff;

    box-shadow:
    0 0 15px rgba(15,143,255,0.15);
}

.contact-form button{

    background:#0f8fff;

    color:#fff;

    border:none;

    padding:16px 35px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

    transition:0.4s;
}

.contact-form button:hover{

    background:#020817;

    transform:translateY(-3px);
}

/* CONTACT INFO */

.contact-info{

    background:#020817;

    padding:55px;

    border-radius:25px;

    color:#fff;
}

.contact-info h2{

    margin-bottom:35px;

    font-size:32px;
}

.info-box{

    margin-bottom:30px;

    padding-bottom:20px;

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.info-box strong{

    color:#0f8fff;

    display:block;

    margin-bottom:10px;
}

.info-box p{

    color:#cbd5e1;

    line-height:1.8;
}

/* FOOTER */

footer{

    background:#000;

    color:#fff;

    text-align:center;

    padding:28px 0;

    font-size:15px;
}


/* SECTION HEADING */

.section-heading{
    text-align:center;
    max-width:950px;
    margin:auto;
}

.section-heading span{

    color:#1496ff;

    font-weight:700;

    letter-spacing:2px;
}

.section-heading h2{

    font-size:52px;

    margin:20px 0 30px;

    color:#020817;
}

.section-heading p{

    color:#666;

    line-height:2;

    font-size:18px;
}

/* DIFFERENT SECTION */

.different-section{

    padding:120px 0 70px;

    background:#f7f9fc;
}

/* CUSTOM SECTION */

.custom-section{

    padding:40px 0 130px;

    background:#f7f9fc;
}

.custom-grid{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:50px;

    align-items:start;
}

/* LEFT */

.custom-left{

    position:sticky;

    top:120px;
}

.custom-left span{

    color:#1496ff;

    font-weight:700;

    letter-spacing:2px;
}

.custom-left h2{

    font-size:52px;

    line-height:1.2;

    margin:25px 0;
}

.custom-left p{

    color:#666;

    line-height:2;

    margin-bottom:20px;

    font-size:17px;
}

/* RIGHT */

.custom-right{

    display:flex;

    flex-direction:column;

    gap:25px;
}

/* CARD */

.custom-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.08);

    transition:0.4s;

    border-left:5px solid #1496ff;
}

.custom-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 60px rgba(20,150,255,0.15);
}

.custom-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:#020817;
}

.custom-card p{

    color:#666;

    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .custom-grid{
        grid-template-columns:1fr;
    }

    .custom-left{
        position:relative;
        top:0;
    }

    .section-heading h2,
    .custom-left h2{
        font-size:38px;
    }
}

/* FAQ SECTION */

.faq-section{

    padding:130px 0;

    background:
    linear-gradient(
        180deg,
        #f7f9fc 0%,
        #eef5ff 100%
    );

    position:relative;

    overflow:hidden;
}

/* GLOW EFFECT */

.faq-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:#1496ff;

    filter:blur(180px);

    opacity:0.08;

    top:-200px;
    right:-150px;
}

/* FAQ WRAPPER */

.faq-wrapper{

    max-width:1000px;

    margin:70px auto 0;

    position:relative;

    z-index:2;
}

/* FAQ ITEM */

.faq-item{

    background:#fff;

    margin-bottom:25px;

    border-radius:22px;

    overflow:hidden;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.06);

    transition:0.4s;

    border:1px solid rgba(20,150,255,0.08);
}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 60px rgba(20,150,255,0.12);
}

/* ACTIVE ITEM */

.faq-item.active{

    border:1px solid rgba(20,150,255,0.25);

    box-shadow:
    0 20px 60px rgba(20,150,255,0.12);
}

/* QUESTION */

.faq-question{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:30px 35px;

    cursor:pointer;
}

.faq-question h3{

    font-size:22px;

    color:#020817;

    font-weight:600;

    line-height:1.5;
}

/* PLUS ICON */

.faq-question span{

    width:42px;
    height:42px;

    min-width:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#1496ff;

    color:#fff;

    font-size:28px;

    transition:0.4s;
}

/* ACTIVE ICON */

.faq-item.active .faq-question span{

    transform:rotate(45deg);

    background:#020817;
}

/* ANSWER */

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height 0.5s ease;
}

.faq-answer p{

    padding:0 35px 35px;

    color:#666;

    line-height:2;

    font-size:17px;
}

/* OPEN ANSWER */

.faq-item.active .faq-answer{

    max-height:500px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .faq-question{

        padding:25px;
    }

    .faq-question h3{

        font-size:18px;
    }

    .faq-answer p{

        padding:0 25px 25px;
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-grid,
    .about-grid,
    .contact-grid{

        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:48px;
    }

    .navbar{
        display:none;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .about-content h2{
        font-size:38px;
    }
}