/*==================================================
  SHAKIMTECH STYLE.CSS
  PART 1
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
  ROOT VARIABLES
==========================*/

:root{

    --primary:#0F172A;
    --secondary:#0EA5E9;
    --accent:#FBBF24;

    --white:#ffffff;
    --light:#f8fafc;
    --gray:#64748b;
    --dark:#111827;

    --shadow:0 15px 35px rgba(0,0,0,.12);

    --transition:.4s ease;

}

/*==========================
 RESET
==========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--light);
    color:#333;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*==========================
 CUSTOM SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ddd;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0284c7;

}

/*==========================
 LOADER
==========================*/

#loader{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:white;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

}

.spinner{

    width:60px;
    height:60px;

    border:6px solid #ddd;
    border-top:6px solid var(--secondary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*==========================
 HEADER
==========================*/

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;

    background:rgba(15,23,42,.95);

    backdrop-filter:blur(12px);

    z-index:999;

    transition:.4s;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

/* Change header on scroll */

header.sticky{

    background:#0F172A;
    padding:5px 0;

}

/*==========================
 NAVBAR
==========================*/

.navbar{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

}

/* Logo */

.logo{

    display:flex;
    align-items:center;

    gap:10px;

}

.logo i{

    color:rgb(106, 106, 233);

    font-size:32px;

}

.logo h2{

    color:white;

    font-size:30px;

    font-weight:700;

}

/*==========================
 MENU
==========================*/

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:white;

    font-weight:500;

    position:relative;

    transition:var(--transition);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:3px;

    background:var(--accent);

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--accent);

}

.nav-links a:hover::after{

    width:100%;

}

/*==========================
 BUTTONS
==========================*/

.btn-nav{

    background:var(--secondary);

    color:white;

    padding:12px 25px;

    border-radius:35px;

    transition:var(--transition);

    font-weight:600;

}

.btn-nav:hover{

    background:#0284c7;

    transform:translateY(-4px);

}

/*==========================
 MOBILE MENU
==========================*/

.menu-btn{

    display:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

/*==========================
 HERO
==========================*/

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    align-items:center;

    gap:60px;

    padding:130px 8% 80px;

    background:linear-gradient(
        135deg,
        #0F172A,
        #1E3A8A,
        #0EA5E9
    );

    color:white;

    overflow:hidden;

    position:relative;

}

/* Floating background circles */

.hero::before{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-120px;
    right:-120px;

}

.hero::after{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    bottom:-80px;
    left:-80px;

}

/*==========================
 HERO CONTENT
==========================*/

.hero-content{

    animation:slideLeft 1.2s ease;

}

.hero h4{

    color:var(--accent);

    margin-bottom:15px;

    letter-spacing:3px;
    font-size: 45px;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    max-width:600px;

    margin-bottom:30px;

    color:#f5f5f5;

}

/*==========================
 HERO BUTTONS
==========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    background:var(--secondary);

    color:white;

    padding:15px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 25px rgba(0,0,0,.25);

}

.btn-secondary{

    background:white;

    color:var(--primary);

    padding:15px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.btn-secondary:hover{

    background:var(--accent);

    color:black;

}

/*==========================
 HERO IMAGE
==========================*/

.hero-image{

    animation:slideRight 1.2s ease;

}

.hero-image img{

    width:100%;

    animation:float 4s ease-in-out infinite;
    padding: 100px;
    border-radius: 300px;

}

/*==========================
 ANIMATIONS
==========================*/

@keyframes float{

    50%{

        transform:translateY(-20px);

    }

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes slideRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*==========================
 SECTIONS
==========================*/

section{

    padding:90px 8%;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:10px;

}

.section-title p{

    color:var(--gray);

    font-size:18px;

}

/*==================================================
  SHAKIMTECH STYLE.CSS
  PART 2
  About • Services • Gallery • Contact
==================================================*/

/*==========================
 ABOUT SECTION
==========================*/

.about{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:60px;
    align-items:center;
}

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    transition:.5s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-content h3{
    font-size:34px;
    color:var(--primary);
    margin-bottom:20px;
}

.about-content p{
    color:var(--gray);
    margin-bottom:20px;
}

.about-content ul{
    margin-top:25px;
}

.about-content li{
    margin-bottom:15px;
    font-size:17px;
    color:#444;
    display:flex;
    align-items:center;
}

.about-content li i{
    color:var(--secondary);
    margin-right:12px;
    font-size:20px;
}

/*==========================
 SERVICES
==========================*/

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(14,165,233,.15),
        transparent
    );
    transition:.8s;
}

.service-card:hover::before{
    left:100%;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.service-card i{
    width:90px;
    height:90px;
    line-height:90px;
    font-size:36px;
    color:#fff;
    background:var(--secondary);
    border-radius:50%;
    margin-bottom:25px;
    transition:.5s;
}

.service-card:hover i{
    background:var(--accent);
    transform:rotate(360deg);
}

.service-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:25px;
}

.service-card p{
    color:var(--gray);
    font-size:16px;
}

/*==========================
 GALLERY
==========================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    border-radius:18px;
    cursor:pointer;
    transition:.5s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.gallery-grid img:hover{
    transform:scale(1.08) rotate(1deg);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/*==========================
 CONTACT
==========================*/

.contact{
    display:flex;
    justify-content:center;
}

.contact form{
    width:100%;
    max-width:700px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact input,
.contact select,
.contact textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:20px;
    outline:none;
    transition:.3s;
    font-size:16px;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus{
    border-color:var(--secondary);
    box-shadow:0 0 10px rgba(14,165,233,.2);
}

.contact textarea{
    min-height:170px;
    resize:vertical;
}

.contact button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:var(--secondary);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact button:hover{
    background:#0284c7;
    transform:translateY(-4px);
}

/*==========================
 SIMPLE FADE ANIMATION
==========================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/*==========================
 HOVER EFFECTS
==========================*/

.service-card,
.about-image img,
.gallery-grid img,
.contact form{
    transition:all .4s ease;
}

.service-card:hover,
.contact form:hover{
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

/*==========================
 SECTION BACKGROUNDS
==========================*/

#about{
    background:#fff;
}

#services{
    background:#f8fafc;
}

#gallery{
    background:#fff;
}

#contact{
    background:#f8fafc;
}

/*==================================================
  SHAKIMTECH STYLE.CSS
  PART 3
  Footer • WhatsApp • Back to Top • Animations
  Responsive Design
==================================================*/

/*==========================
 FOOTER
==========================*/

footer{
    background:var(--dark);
    color:#fff;
    text-align:center;
    padding:70px 8% 30px;
}

footer h2{
    font-size:32px;
    margin-bottom:20px;
    color:var(--accent);
}

footer p{
    color:#cbd5e1;
    margin:10px 0;
    font-size:16px;
}

.socials{
    margin:30px 0;
}

.socials a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin:0 8px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:20px;
    transition:.4s;
}

.socials a:hover{
    background:var(--secondary);
    transform:translateY(-8px) rotate(360deg);
}

/*==========================
 WHATSAPP BUTTON
==========================*/

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:999;
    animation:pulse 2s infinite;
    transition:.4s;
}

.whatsapp:hover{
    transform:scale(1.15);
}

@keyframes pulse{

0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
    box-shadow:0 0 0 20px rgba(37,211,102,0);
}

100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

/*==========================
 BACK TO TOP
==========================*/

#topBtn{

    position:fixed;

    bottom:100px;

    right:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:white;

    font-size:20px;

    cursor:pointer;

    display:none;

    transition:.4s;

    z-index:999;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

#topBtn:hover{

    background:var(--accent);

    color:#000;

    transform:translateY(-5px);

}

/*==========================
 HOVER EFFECTS
==========================*/

img{

    transition:.5s;

}

img:hover{

    filter:brightness(1.05);

}

button,
.btn-primary,
.btn-secondary,
.btn-nav{

    transition:.4s;

}

button:hover{

    transform:translateY(-3px);

}

input,
textarea,
select{

    transition:.3s;

}

input:hover,
textarea:hover,
select:hover{

    border-color:var(--secondary);

}

/*==========================
 CARD ANIMATION
==========================*/

.service-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================
 SECTION FADE
==========================*/

section{

    animation:fadeSection .9s ease;

}

@keyframes fadeSection{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/*==========================
 MOBILE RESPONSIVE
==========================*/

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.about{

grid-template-columns:1fr;

text-align:center;

}

.about-content ul{

display:inline-block;

text-align:left;

}

}

/*==========================
 TABLET
==========================*/

@media(max-width:768px){

.navbar{

padding:18px;

}

.menu-btn{

display:block;

}

.nav-links{

display:none;

position:absolute;

top:75px;

right:0;

width:230px;

background:var(--primary);

padding:25px;

flex-direction:column;

box-shadow:0 10px 20px rgba(0,0,0,.25);

}

.nav-links.active{

display:flex;

}

.nav-links li{

margin:15px 0;

}

.btn-nav{

display:none;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:38px;

}

.section-title h2{

font-size:34px;

}

.contact form{

padding:25px;

}

footer{

padding:50px 20px;

}

}

/*==========================
 SMALL PHONES
==========================*/

@media(max-width:576px){

.hero h1{

font-size:30px;

}

.hero p{

font-size:15px;

}

.logo h2{

font-size:22px;

}

.section-title h2{

font-size:28px;

}

.service-card{

padding:25px;

}

.service-card h3{

font-size:22px;

}

.about-content h3{

font-size:28px;

}

.whatsapp{

width:55px;

height:55px;

font-size:25px;

}

#topBtn{

width:50px;

height:50px;

font-size:18px;

}

}

/*==========================
 END OF FILE
==========================*/