/*==================================================
RUSH TECH WEBSITE

Author: Rush Tech
Version: 1.0

TABLE OF CONTENTS

1. Variables
2. Reset
3. Base
4. Typography
5. Utilities
6. Buttons
7. Layout

==================================================*/



/*==================================================
1. VARIABLES
==================================================*/

:root{

--primary:#AB3500;

--primary-light:#C76A1A;

--background:#FFF4E8;

--background-light:#FFF9F3;

--white:#FFFFFF;

--text:#201B14;

--muted:#6E6259;

--border:#E6D9CB;

--shadow-soft:
0 10px 30px rgba(0,0,0,.06);

--shadow-medium:
0 20px 50px rgba(0,0,0,.10);

--shadow-large:
0 30px 70px rgba(0,0,0,.16);

--radius-small:12px;

--radius:20px;

--radius-large:34px;

--transition:.35s ease;

--max-width:1250px;

}



/*==================================================
2. RESET
==================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Plus Jakarta Sans',sans-serif;

background:var(--background);

color:var(--text);

overflow-x:hidden;

line-height:1.7;

-webkit-font-smoothing:antialiased;

}



img{

display:block;

width:100%;

height:auto;

}



a{

text-decoration:none;

color:inherit;

}



button{

font-family:inherit;

border:none;

background:none;

cursor:pointer;

}



ul{

list-style:none;

}



/*==================================================
3. TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5{

font-family:'Space Grotesk',sans-serif;

font-weight:700;

color:var(--text);

line-height:1.15;

}



h1{

font-size:clamp(3rem,7vw,5.5rem);

}



h2{

font-size:clamp(2.3rem,5vw,4rem);

}



h3{

font-size:1.45rem;

}



p{

color:var(--muted);

font-size:1.05rem;

}



.section-tag{

display:inline-flex;

align-items:center;

gap:10px;

padding:8px 18px;

background:rgba(171,53,0,.08);

border-radius:999px;

font-size:.85rem;

font-weight:700;

letter-spacing:1px;

color:var(--primary);

margin-bottom:20px;

text-transform:uppercase;

}



/*==================================================
4. LAYOUT
==================================================*/

.container{

width:min(92%,var(--max-width));

margin:auto;

}



section{

padding:120px 0;

position:relative;

}



.section-heading{

max-width:760px;

margin-bottom:70px;

}



.section-heading.center{

margin-inline:auto;

text-align:center;

}



.section-heading p{

margin-top:20px;

}



/*==================================================
5. BUTTONS
==================================================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:17px 34px;

background:var(--primary);

color:#fff;

font-weight:700;

border-radius:999px;

transition:var(--transition);

box-shadow:var(--shadow-soft);

}



.btn-primary:hover{

transform:translateY(-5px);

background:var(--primary-light);

box-shadow:var(--shadow-medium);

}



.btn-primary:active{

transform:scale(.96);

}



.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:17px 34px;

border-radius:999px;

border:2px solid var(--border);

font-weight:700;

transition:var(--transition);

background:#fff;

}



.btn-secondary:hover{

border-color:var(--primary);

color:var(--primary);

transform:translateY(-5px);

}



.btn-secondary:active{

transform:scale(.96);

}



/*==================================================
6. PRELOADER
==================================================*/

#preloader{

position:fixed;

inset:0;

background:var(--background);

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:.7s;

}



.loader-content{

text-align:center;

}



.loader-content img{

width:95px;

margin:auto;

margin-bottom:20px;

}



.loader-content h2{

font-size:2rem;

margin-bottom:20px;

}



.loader-line{

width:180px;

height:5px;

background:#eee;

border-radius:50px;

overflow:hidden;

position:relative;

}



.loader-line::after{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:var(--primary);

animation:loading 1.5s linear infinite;

}



/*==================================================
7. SCROLL BAR
==================================================*/

#scroll-progress{

position:fixed;

top:0;

left:0;

width:0;

height:5px;

background:var(--primary);

z-index:9999;

}



/*==================================================
END OF PART 1
==================================================*/

/*==================================================
8. HEADER
==================================================*/

#header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:999;

padding:18px 0;

transition:.4s ease;

}

#header.scrolled{

background:rgba(255,244,232,.82);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

box-shadow:0 8px 30px rgba(0,0,0,.06);

padding:14px 0;

}

nav{

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

}

.logo{

display:flex;

align-items:center;

}

.logo img{

width:180px;

transition:.35s;

}

.nav-links{

display:flex;

align-items:center;

gap:38px;

}

.nav-links a{

font-weight:600;

color:var(--text);

position:relative;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--primary);

transition:.35s;

}

.nav-links a:hover{

color:var(--primary);

}

.nav-links a:hover::after{

width:100%;

}

.nav-actions{

display:flex;

align-items:center;

gap:20px;

}

.menu-btn{

display:none;

font-size:1.7rem;

color:var(--text);

}



/*==================================================
9. HERO
==================================================*/

#hero{

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

padding-top:150px;

}

.hero-background{

position:absolute;

inset:0;

overflow:hidden;

z-index:-2;

}

.gradient-one{

position:absolute;

width:700px;

height:700px;

background:rgba(171,53,0,.08);

border-radius:50%;

top:-180px;

left:-220px;

filter:blur(60px);

}

.gradient-two{

position:absolute;

width:650px;

height:650px;

background:rgba(199,106,26,.12);

border-radius:50%;

right:-150px;

bottom:-220px;

filter:blur(70px);

}

.grid-overlay{

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(32,27,20,.04) 1px, transparent 1px),

linear-gradient(90deg, rgba(32,27,20,.04) 1px, transparent 1px);

background-size:45px 45px;

}

.hero-grid{

display:grid;

grid-template-columns:1.05fr .95fr;

gap:80px;

align-items:center;

}

.hero-content h1{

margin-bottom:28px;

max-width:700px;

}

.hero-content h1 span{

color:var(--primary);

display:block;

}

.hero-description{

font-size:1.15rem;

max-width:620px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:60px;

flex-wrap:wrap;

}



/*==================================================
10. HERO TRUST
==================================================*/

.hero-trust{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.trust-item{

background:#fff;

padding:20px 28px;

border-radius:18px;

box-shadow:var(--shadow-soft);

min-width:170px;

transition:.35s;

}

.trust-item:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-medium);

}

.trust-item strong{

display:block;

font-size:1.1rem;

margin-bottom:6px;

font-family:'Space Grotesk',sans-serif;

}

.trust-item span{

color:var(--muted);

font-size:.95rem;

}



/*==================================================
11. HERO VISUAL
==================================================*/

.hero-visual{

position:relative;

height:760px;

}

.floating-card{

position:absolute;

background:#fff;

border-radius:26px;

box-shadow:var(--shadow-large);

overflow:hidden;

transition:.45s;

}

.floating-card:hover{

transform:translateY(-12px);

}

.laptop-card{

width:560px;

top:80px;

left:10px;

z-index:2;

}

.phone-card{

width:220px;

right:10px;

top:240px;

z-index:3;

border:8px solid #111;

border-radius:38px;

}

.analytics-card{

width:210px;

padding:26px;

left:-20px;

bottom:110px;

text-align:center;

}

.analytics-card .card-icon{

font-size:2rem;

color:var(--primary);

margin-bottom:18px;

}

.analytics-card h2{

font-size:2.4rem;

margin:10px 0;

}

.analytics-card p{

font-size:.9rem;

}

.code-card{

width:270px;

padding:26px;

right:-30px;

top:40px;

background:#201B14;

color:#fff;

}

.code-card pre{

overflow:auto;

font-size:.82rem;

font-family:monospace;

line-height:1.7;

}

.review-card{

padding:20px;

width:180px;

bottom:40px;

right:70px;

text-align:center;

}

.review-card i{

font-size:2rem;

color:#f4b400;

margin-bottom:12px;

}

.review-card strong{

display:block;

font-size:2rem;

font-family:'Space Grotesk',sans-serif;

margin-bottom:6px;

}

.review-card span{

font-size:.9rem;

color:var(--muted);

}



/*==================================================
12. SCROLL INDICATOR
==================================================*/

.scroll-indicator{

position:absolute;

left:50%;

bottom:35px;

transform:translateX(-50%);

}

.scroll-indicator span{

display:block;

width:32px;

height:54px;

border:2px solid var(--primary);

border-radius:40px;

position:relative;

}

.scroll-indicator span::before{

content:"";

position:absolute;

left:50%;

top:10px;

width:6px;

height:6px;

background:var(--primary);

border-radius:50%;

transform:translateX(-50%);

animation:scrollMouse 2s infinite;

}



/*==================================================
13. TECHNOLOGY STRIP
==================================================*/

#tech-stack{

padding:45px 0;

background:#fff;

border-top:1px solid var(--border);

border-bottom:1px solid var(--border);

overflow:hidden;

}

.tech-wrapper{

display:flex;

justify-content:center;

align-items:center;

gap:45px;

flex-wrap:wrap;

}

.tech-wrapper span{

font-weight:700;

font-size:1rem;

color:var(--muted);

transition:.35s;

}

.tech-wrapper span:hover{

color:var(--primary);

transform:translateY(-4px);

}

/*==================================================
END OF PART 2
==================================================*/

/*==================================================
14. ABOUT
==================================================*/

#about{

background:var(--background-light);

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:90px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:32px;

box-shadow:var(--shadow-large);

}

.about-content p{

margin-bottom:22px;

}

.about-highlights{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

margin-top:45px;

}

.highlight-card{

background:#fff;

padding:30px;

border-radius:24px;

box-shadow:var(--shadow-soft);

transition:.4s;

border:1px solid transparent;

}

.highlight-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-medium);

border-color:rgba(171,53,0,.15);

}

.highlight-card i{

width:70px;

height:70px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(171,53,0,.08);

color:var(--primary);

font-size:1.6rem;

border-radius:18px;

margin-bottom:22px;

}

.highlight-card h4{

margin-bottom:12px;

}



/*==================================================
15. SERVICES
==================================================*/

#services{

background:var(--background);

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

}

.service-card{

background:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:var(--shadow-soft);

transition:.45s;

position:relative;

}

.service-card:hover{

transform:translateY(-14px);

box-shadow:var(--shadow-large);

}

.service-card img{

height:240px;

object-fit:cover;

transition:.6s;

}

.service-card:hover img{

transform:scale(1.06);

}

.service-card h3{

padding:30px 30px 16px;

}

.service-card p{

padding:0 30px 35px;

}

.service-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:5px;

background:linear-gradient(90deg,var(--primary),var(--primary-light));

transform:scaleX(0);

transform-origin:left;

transition:.45s;

}

.service-card:hover::after{

transform:scaleX(1);

}



/*==================================================
16. PROJECT SHOWCASE
==================================================*/

#portfolio{

background:var(--background-light);

}

.project-showcase{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

margin-bottom:140px;

}

.project-showcase.reverse{

grid-template-columns:.9fr 1.1fr;

}

.project-showcase.reverse .project-image{

order:2;

}

.project-showcase.reverse .project-content{

order:1;

}

.project-image{

position:relative;

}

.project-image img{

border-radius:30px;

box-shadow:var(--shadow-large);

transition:.5s;

}

.project-image:hover img{

transform:translateY(-10px);

}

.project-label{

display:inline-block;

padding:8px 18px;

background:rgba(171,53,0,.08);

color:var(--primary);

border-radius:999px;

font-size:.82rem;

font-weight:700;

letter-spacing:1px;

margin-bottom:20px;

}

.project-content h3{

font-size:2.4rem;

margin-bottom:20px;

}

.project-content p{

margin-bottom:28px;

max-width:540px;

}

.project-tech{

display:flex;

flex-wrap:wrap;

gap:14px;

margin-bottom:35px;

}

.project-tech span{

padding:10px 18px;

background:#fff;

border-radius:999px;

font-size:.9rem;

font-weight:600;

box-shadow:var(--shadow-soft);

}



/*==================================================
17. PROJECT STATS
==================================================*/

.project-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}

.stat-box{

background:#fff;

padding:45px 30px;

text-align:center;

border-radius:28px;

box-shadow:var(--shadow-soft);

transition:.35s;

}

.stat-box:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-medium);

}

.stat-box h2{

font-size:3rem;

color:var(--primary);

margin-bottom:12px;

}

.stat-box p{

font-size:.95rem;

}



/*==================================================
18. SECTION SPACING UTILITIES
==================================================*/

.mt-1{

margin-top:20px;

}

.mt-2{

margin-top:40px;

}

.mt-3{

margin-top:60px;

}

.text-center{

text-align:center;

}

.text-left{

text-align:left;

}

.w-100{

width:100%;

}

/*==================================================
END OF PART 3
==================================================*/
/*==================================================
19. DEVELOPMENT PROCESS
==================================================*/

#process{

background:var(--background);

}

.timeline{

max-width:900px;

margin:70px auto 0;

position:relative;

}

.timeline::before{

content:"";

position:absolute;

left:34px;

top:0;

bottom:0;

width:2px;

background:rgba(171,53,0,.15);

}

.timeline-item{

display:flex;

gap:35px;

margin-bottom:60px;

position:relative;

}

.timeline-number{

width:70px;

height:70px;

flex-shrink:0;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:var(--primary);

color:#fff;

font-weight:700;

font-size:1.2rem;

box-shadow:var(--shadow-medium);

z-index:2;

}

.timeline-content{

background:#fff;

padding:32px;

border-radius:24px;

box-shadow:var(--shadow-soft);

flex:1;

transition:.35s;

}

.timeline-content:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-medium);

}

.timeline-content h3{

margin-bottom:14px;

}



/*==================================================
20. TECHNOLOGIES
==================================================*/

#technologies{

background:var(--background-light);

}

.tech-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:24px;

margin-top:60px;

}

.tech-card{

background:#fff;

padding:28px;

border-radius:22px;

text-align:center;

font-weight:700;

box-shadow:var(--shadow-soft);

transition:.35s;

border:1px solid transparent;

}

.tech-card:hover{

transform:translateY(-8px);

border-color:rgba(171,53,0,.18);

box-shadow:var(--shadow-medium);

color:var(--primary);

}



/*==================================================
21. WHY CHOOSE US
==================================================*/

#why-us{

background:var(--background);

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:40px 30px;

border-radius:28px;

text-align:center;

box-shadow:var(--shadow-soft);

transition:.4s;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-large);

}

.why-card i{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

font-size:2rem;

border-radius:20px;

background:rgba(171,53,0,.08);

color:var(--primary);

}

.why-card h3{

margin-bottom:16px;

}



/*==================================================
22. TRAINING
==================================================*/

#training{

background:linear-gradient(
135deg,
#AB3500,
#C76A1A);

color:#fff;

}

.training-banner{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.training-text .section-tag{

background:rgba(255,255,255,.18);

color:#fff;

}

.training-text h2{

color:#fff;

margin-bottom:24px;

}

.training-text p{

color:rgba(255,255,255,.88);

margin-bottom:35px;

}

.training-image img{

border-radius:30px;

box-shadow:0 30px 80px rgba(0,0,0,.25);

}

.training-text .btn-primary{

background:#fff;

color:var(--primary);

}

.training-text .btn-primary:hover{

background:#FFF4E8;

}



/*==================================================
23. DIVIDERS
==================================================*/

.section-divider{

width:120px;

height:4px;

background:linear-gradient(
90deg,
var(--primary),
transparent);

margin:30px auto;

border-radius:999px;

}



/*==================================================
END OF PART 4
==================================================*/
/*==================================================
24. TESTIMONIALS
==================================================*/

#testimonials{

background:var(--background-light);

}

.testimonial-slider{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.testimonial-card{

background:#fff;

padding:40px;

border-radius:28px;

box-shadow:var(--shadow-soft);

transition:.4s;

position:relative;

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-large);

}

.quote-icon{

font-size:2rem;

color:var(--primary);

margin-bottom:20px;

}

.client-info{

display:flex;

align-items:center;

gap:18px;

margin-top:30px;

}

.client-info img{

width:65px;

height:65px;

border-radius:50%;

object-fit:cover;

}

.client-info h4{

font-size:1rem;

margin-bottom:4px;

}

.client-info span{

font-size:.9rem;

color:var(--muted);

}



/*==================================================
25. FAQ
==================================================*/

#faq{

background:var(--background);

}

.faq-wrapper{

max-width:900px;

margin:60px auto 0;

}

.faq-item{

background:#fff;

margin-bottom:20px;

border-radius:22px;

overflow:hidden;

box-shadow:var(--shadow-soft);

}

.faq-question{

width:100%;

padding:26px 30px;

display:flex;

justify-content:space-between;

align-items:center;

font-size:1.05rem;

font-weight:700;

text-align:left;

color:var(--text);

}

.faq-question i{

color:var(--primary);

transition:.3s;

}

.faq-answer{

max-height:0;

overflow:hidden;

transition:max-height .4s ease;

}

.faq-answer p{

padding:0 30px 30px;

}

.faq-item.active .faq-answer{

max-height:220px;

}

.faq-item.active .faq-question i{

transform:rotate(45deg);

}



/*==================================================
26. CONTACT
==================================================*/

#contact{

background:var(--background-light);

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:start;

}

.contact-information{

display:grid;

gap:24px;

}

.contact-card{

display:flex;

align-items:flex-start;

gap:20px;

padding:28px;

background:#fff;

border-radius:24px;

box-shadow:var(--shadow-soft);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-medium);

}

.contact-card i{

font-size:1.5rem;

color:var(--primary);

margin-top:5px;

min-width:26px;

}

.contact-btn{

margin-top:20px;

width:max-content;

}

.contact-map img{

height:100%;

min-height:520px;

object-fit:cover;

border-radius:30px;

box-shadow:var(--shadow-large);

}



/*==================================================
27. FOOTER
==================================================*/

#footer{

background:#201B14;

color:#fff;

padding:100px 0 35px;

position:relative;

overflow:hidden;

}

#footer::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:linear-gradient(90deg,var(--primary),var(--primary-light));

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.4fr;

gap:60px;

margin-bottom:70px;

}

.footer-logo{

width:180px;

margin-bottom:25px;

}

.footer-about p{

color:rgba(255,255,255,.72);

}

.footer-links h3,

.footer-contact h3{

margin-bottom:22px;

color:#fff;

}

.footer-links li{

margin-bottom:14px;

}

.footer-links a{

color:rgba(255,255,255,.72);

transition:.3s;

}

.footer-links a:hover{

color:#fff;

padding-left:6px;

}

.footer-contact p{

display:flex;

gap:12px;

align-items:flex-start;

margin-bottom:16px;

color:rgba(255,255,255,.72);

}

.footer-contact i{

color:var(--primary-light);

}

.footer-btn{

display:inline-flex;

margin-top:20px;

padding:15px 30px;

border-radius:999px;

background:var(--primary);

color:#fff;

font-weight:700;

transition:.35s;

}

.footer-btn:hover{

background:var(--primary-light);

transform:translateY(-4px);

}

.footer-bottom{

padding-top:35px;

border-top:1px solid rgba(255,255,255,.08);

display:flex;

justify-content:space-between;

flex-wrap:wrap;

gap:15px;

}

.footer-bottom p{

color:rgba(255,255,255,.6);

font-size:.92rem;

}



/*==================================================
28. SOCIAL ICONS
==================================================*/

.social-links{

display:flex;

gap:16px;

margin-top:28px;

}

.social-links a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.08);

border-radius:50%;

transition:.35s;

}

.social-links a:hover{

background:var(--primary);

transform:translateY(-6px);

}



/*==================================================
29. FLOATING BUTTONS
==================================================*/

.floating-whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:65px;

height:65px;

display:flex;

align-items:center;

justify-content:center;

background:#25D366;

color:#fff;

border-radius:50%;

font-size:1.8rem;

box-shadow:var(--shadow-large);

z-index:999;

transition:.35s;

}

.floating-whatsapp:hover{

transform:scale(1.08);

}

#backToTop{

position:fixed;

right:30px;

bottom:115px;

width:56px;

height:56px;

border-radius:50%;

background:var(--primary);

color:#fff;

font-size:1.2rem;

display:flex;

align-items:center;

justify-content:center;

opacity:0;

visibility:hidden;

transition:.35s;

z-index:998;

}

#backToTop.show{

opacity:1;

visibility:visible;

}



/*==================================================
30. CURSOR GLOW
==================================================*/

.cursor-glow{

position:fixed;

width:300px;

height:300px;

border-radius:50%;

background:radial-gradient(circle,
rgba(171,53,0,.12),
transparent 70%);

pointer-events:none;

z-index:-1;

transform:translate(-50%,-50%);

filter:blur(25px);

}



/*==================================================
END OF STYLE.CSS
==================================================*/
