/* ==========================================================
   ICA IMMIGRATION CANADA
   PARTIE 1
   THEME PREMIUM BLACK / CHROME / SILVER
========================================================== */

:root{

--black:#000000;
--black-soft:#050505;
--black-card:#0d0d0d;

--chrome:#c0c0c0;
--silver:#e8e8e8;
--metal:#8b8b8b;

--border:rgba(255,255,255,.08);

--gradient-metal:
linear-gradient(
135deg,
#ffffff 0%,
#e8e8e8 15%,
#b8b8b8 35%,
#f4f4f4 50%,
#8f8f8f 70%,
#ffffff 100%
);

--shadow:
0 20px 60px rgba(0,0,0,.6);

--transition:
all .4s ease;

}

/* ==========================================================
RESET
========================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:var(--black);

color:white;

overflow-x:hidden;

min-height:100vh;

}

body.ar{

font-family:'Cairo',sans-serif;

direction:rtl;

}

img{
display:block;
max-width:100%;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

button{
border:none;
outline:none;
cursor:pointer;
font-family:inherit;
}

/* ==========================================================
SCROLLBAR
========================================================== */

::-webkit-scrollbar{
width:12px;
}

::-webkit-scrollbar-track{
background:#050505;
}

::-webkit-scrollbar-thumb{

background:
linear-gradient(
180deg,
#ffffff,
#8b8b8b
);

border-radius:50px;

}

/* ==========================================================
LANGUAGE SCREEN
========================================================== */

#language-screen{

position:fixed;

inset:0;

display:flex;

justify-content:center;
align-items:center;

background:black;

z-index:999999;

overflow:hidden;

}

.language-overlay{

position:absolute;

inset:0;

background:
radial-gradient(
circle at center,
rgba(255,255,255,.08),
transparent 70%
);

}

.language-box{

position:relative;

z-index:10;

text-align:center;

padding:50px;

width:min(90%,700px);

}

.language-logo{

width:220px;

margin:auto;

margin-bottom:30px;

animation:
logoFloat 3s ease infinite;

}

.language-box h1{

font-size:70px;

font-weight:900;

letter-spacing:6px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:15px;

}

.language-box p{

font-size:24px;

font-weight:700;

margin-bottom:40px;

color:var(--silver);

}

.language-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.lang-btn{

padding:18px 35px;

border-radius:60px;

font-size:18px;

font-weight:800;

background:var(--gradient-metal);

color:black;

transition:.4s;

min-width:180px;

}

.lang-btn:hover{

transform:
translateY(-5px)
scale(1.05);

}

/* ==========================================================
SPLASH SCREEN
========================================================== */

#splash-screen{

position:fixed;

inset:0;

background:black;

display:none;

justify-content:center;
align-items:center;
flex-direction:column;

z-index:999998;

}

.splash-logo{

width:300px;

margin-bottom:30px;

animation:
logoZoom 2s ease;

}

#splash-screen h1{

font-size:90px;

font-weight:900;

letter-spacing:8px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

#splash-screen h2{

font-size:22px;

margin-top:15px;

letter-spacing:3px;

color:var(--silver);

}

/* ==========================================================
MAIN WEBSITE
========================================================== */

#main-website{

display:none;

width:100%;

}

/* ==========================================================
HEADER
========================================================== */

#header{

position:fixed;

top:0;
left:0;

width:100%;

z-index:9999;

background:
rgba(0,0,0,.75);

backdrop-filter:
blur(20px);

border-bottom:
1px solid var(--border);

}

.header-container{

width:min(1600px,95%);

margin:auto;

display:flex;

justify-content:space-between;
align-items:center;

padding:18px 0;

}

.logo-container{

display:flex;

align-items:center;

gap:15px;

}

.header-logo{

width:75px;

}

.logo-text h1{

font-size:32px;

font-weight:900;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.logo-text p{

font-size:13px;

font-weight:700;

color:var(--silver);

letter-spacing:1px;

}

#navbar{

display:flex;

align-items:center;

gap:30px;

}

#navbar a{

font-size:14px;

font-weight:800;

text-transform:uppercase;

position:relative;

transition:.3s;

}

#navbar a::after{

content:"";

position:absolute;

left:0;
bottom:-6px;

width:0;

height:2px;

background:white;

transition:.3s;

}

#navbar a:hover::after{

width:100%;

}

#navbar a:hover{

color:var(--chrome);

}

/* ==========================================================
MOBILE MENU
========================================================== */

#mobile-menu{

display:none;

font-size:28px;

cursor:pointer;

}

/* ==========================================================
HERO SECTION
========================================================== */

.hero{

position:relative;

height:100vh;

display:flex;

justify-content:center;
align-items:center;

overflow:hidden;

}

.hero-video{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

}

.hero-overlay{

position:absolute;

inset:0;

background:
linear-gradient(
to right,
rgba(0,0,0,.85),
rgba(0,0,0,.45)
);

}

.hero-content{

position:relative;

z-index:5;

width:min(1200px,90%);

margin:auto;

text-align:center;

}

.hero-logo{

width:250px;

margin:auto;

margin-bottom:30px;

}

.hero-content h1{

font-size:clamp(
40px,
5vw,
85px
);

font-weight:900;

line-height:1.2;

margin-bottom:25px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero-content p{

font-size:clamp(
18px,
2vw,
28px
);

font-weight:700;

line-height:1.8;

max-width:1000px;

margin:auto;

margin-bottom:30px;

}

.canada-flag{

width:180px;

margin:auto;

margin-bottom:30px;

}

.hero-content h2{

font-size:clamp(
22px,
3vw,
42px
);

font-weight:900;

margin-bottom:40px;

color:var(--silver);

}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-primary{

padding:18px 35px;

background:var(--gradient-metal);

color:black;

font-size:18px;

font-weight:900;

border-radius:60px;

transition:.4s;

}

.btn-primary:hover{

transform:
translateY(-5px);

}

.btn-secondary{

padding:18px 35px;

border-radius:60px;

border:2px solid white;

background:transparent;

color:white;

font-size:18px;

font-weight:900;

transition:.4s;

}

.btn-secondary:hover{

background:white;

color:black;

}
/* ==========================================================
SERVICES SECTION
========================================================== */

.services-section{

padding:120px 0;

background:
linear-gradient(
180deg,
#000000,
#050505
);

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:clamp(40px,4vw,70px);

font-weight:900;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:20px;

}

.section-title p{

font-size:20px;

font-weight:700;

max-width:900px;

margin:auto;

line-height:1.8;

}

.services-grid{

width:min(1400px,92%);

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.service-card{

background:var(--black-card);

border:1px solid var(--border);

border-radius:30px;

padding:50px 30px;

text-align:center;

transition:.4s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:-100%;
left:-100%;

width:250%;
height:250%;

background:
radial-gradient(
circle,
rgba(255,255,255,.12),
transparent 70%
);

transition:.6s;

}

.service-card:hover::before{

top:-50%;
left:-50%;

}

.service-card:hover{

transform:
translateY(-10px);

border-color:
rgba(255,255,255,.25);

}

.service-card i{

font-size:55px;

margin-bottom:25px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.service-card h3{

font-size:24px;

font-weight:900;

line-height:1.5;

}

/* ==========================================================
CONTACT SECTION
========================================================== */

.contact-section{

padding:120px 0;

background:#050505;

}

.contact-container{

width:min(1300px,92%);

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.contact-card{

background:#0d0d0d;

border-radius:30px;

padding:50px 30px;

text-align:center;

border:1px solid var(--border);

transition:.4s;

}

.contact-card:hover{

transform:
translateY(-8px);

}

.contact-card i{

font-size:50px;

margin-bottom:20px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.contact-card h3{

font-size:28px;

font-weight:900;

margin-bottom:20px;

}

.contact-card a{

font-size:20px;

font-weight:700;

word-break:break-word;

}

/* ==========================================================
SOCIAL MEDIA
========================================================== */

.social-media{

width:min(1000px,92%);

margin:60px auto 0;

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:25px;

}

.social-link{

display:flex;

align-items:center;

gap:15px;

padding:18px 30px;

border-radius:70px;

font-size:18px;

font-weight:800;

border:1px solid var(--border);

background:#111;

transition:.4s;

}

.social-link:hover{

transform:
translateY(-5px);

}

.social-link i{

font-size:28px;

}

.instagram:hover{

background:
linear-gradient(
45deg,
#f58529,
#dd2a7b,
#8134af
);

}

.facebook:hover{

background:#1877f2;

}

.whatsapp:hover{

background:#25d366;

}

/* ==========================================================
TESTIMONIES
========================================================== */

.testimonies-section{

padding:120px 0;

background:black;

}

.video-grid{

width:min(1500px,94%);

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

.video-card{

background:#0d0d0d;

border-radius:30px;

overflow:hidden;

border:1px solid var(--border);

transition:.4s;

}

.video-card:hover{

transform:
translateY(-8px);

}

.video-card video{

width:100%;

display:block;

background:black;

}

.video-card h3{

padding:25px;

font-size:24px;

font-weight:900;

text-align:center;

}

/* ==========================================================
IRCC SECTION
========================================================== */

.ircc-section{

padding:120px 0;

background:#050505;

}

.ircc-box{

width:min(900px,92%);

margin:auto;

background:#0d0d0d;

border-radius:35px;

padding:60px;

text-align:center;

border:1px solid var(--border);

}

.ircc-box i{

font-size:70px;

margin-bottom:25px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.ircc-box h3{

font-size:36px;

font-weight:900;

margin-bottom:25px;

}

.ircc-box p{

font-size:20px;

font-weight:700;

line-height:1.8;

margin-bottom:35px;

}

/* ==========================================================
ICA ACADEMY
========================================================== */

.academy-section{

padding:120px 0;

background:black;

}

.academy-box{

width:min(900px,92%);

margin:auto;

background:#0d0d0d;

border-radius:35px;

padding:60px;

text-align:center;

border:1px solid var(--border);

}

.academy-box i{

font-size:70px;

margin-bottom:25px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.academy-box h3{

font-size:38px;

font-weight:900;

margin-bottom:20px;

}

.academy-box p{

font-size:20px;

font-weight:700;

margin-bottom:35px;

line-height:1.8;

}

/* ==========================================================
ICA TRAVEL
========================================================== */

.travel-section{

padding:120px 0;

background:#050505;

}

.travel-box{

width:min(900px,92%);

margin:auto;

background:#0d0d0d;

border-radius:35px;

padding:60px;

text-align:center;

border:1px solid var(--border);

}

.travel-box i{

font-size:70px;

margin-bottom:25px;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.travel-box h3{

font-size:38px;

font-weight:900;

margin-bottom:20px;

}

.travel-box p{

font-size:20px;

font-weight:700;

line-height:1.8;

margin-bottom:35px;

}

/* ==========================================================
LOCATION SECTION
========================================================== */

.location-section{

padding:120px 0;

background:black;

}

.location-container{

width:min(1400px,92%);

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

.location-card{

background:#0d0d0d;

border-radius:30px;

padding:50px;

text-align:center;

border:1px solid var(--border);

transition:.4s;

}

.location-card:hover{

transform:
translateY(-8px);

}

.location-card h3{

font-size:32px;

font-weight:900;

margin-bottom:20px;

}

.location-card p{

font-size:18px;

font-weight:700;

line-height:1.8;

margin-bottom:30px;

}
/* ==========================================================
FOOTER
========================================================== */

.footer{

position:relative;

padding:120px 0 40px;

background:#050505;

border-top:1px solid var(--border);

overflow:hidden;

}

.footer-overlay{

position:absolute;

inset:0;

background:
radial-gradient(
circle at center,
rgba(255,255,255,.04),
transparent 70%
);

pointer-events:none;

}

.footer-container{

position:relative;

z-index:2;

width:min(1500px,92%);

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:50px;

}

.footer-logo{

width:120px;

margin-bottom:20px;

}

.footer-column h3{

font-size:36px;

font-weight:900;

background:var(--gradient-metal);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:15px;

}

.footer-column h4{

font-size:26px;

font-weight:900;

margin-bottom:25px;

color:var(--silver);

}

.footer-column p{

font-size:16px;

font-weight:700;

line-height:1.8;

color:#d8d8d8;

}

.footer-column ul{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-column li{

font-size:17px;

font-weight:700;

}

.footer-column a{

transition:.3s;

}

.footer-column a:hover{

color:var(--chrome);

}

.footer-socials{

display:flex;

gap:18px;

margin-top:25px;

}

.footer-socials a{

width:50px;
height:50px;

display:flex;

justify-content:center;
align-items:center;

border-radius:50%;

border:1px solid var(--border);

font-size:22px;

transition:.4s;

}

.footer-socials a:hover{

transform:translateY(-5px);

background:white;

color:black;

}

.footer-bottom{

margin-top:70px;

text-align:center;

border-top:1px solid var(--border);

padding-top:25px;

font-size:15px;

font-weight:700;

}

/* ==========================================================
BACK TO TOP
========================================================== */

#backToTop{

position:fixed;

right:30px;
bottom:30px;

width:60px;
height:60px;

border-radius:50%;

background:var(--gradient-metal);

color:black;

font-size:22px;

font-weight:900;

z-index:999;

display:flex;

justify-content:center;
align-items:center;

opacity:0;

visibility:hidden;

transition:.4s;

}

#backToTop.active{

opacity:1;

visibility:visible;

}

/* ==========================================================
FLOATING WHATSAPP
========================================================== */

#floatingWhatsapp{

position:fixed;

left:25px;
bottom:25px;

width:70px;
height:70px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;
align-items:center;

font-size:35px;

color:white;

z-index:999;

box-shadow:
0 10px 30px rgba(37,211,102,.4);

animation:
pulseWhatsapp 2s infinite;

}

/* ==========================================================
LANGUAGE SWITCHER
========================================================== */

#languageSwitcher{

position:fixed;

top:110px;
right:25px;

width:60px;
height:60px;

border-radius:50%;

background:var(--gradient-metal);

color:black;

font-size:22px;

z-index:999;

display:flex;

justify-content:center;
align-items:center;

}

#languagePopup{

position:fixed;

top:180px;
right:25px;

width:220px;

background:#0d0d0d;

border:1px solid var(--border);

border-radius:20px;

padding:20px;

display:none;

flex-direction:column;

gap:12px;

z-index:999;

}

#languagePopup.active{

display:flex;

}

#languagePopup h3{

font-size:18px;

font-weight:900;

margin-bottom:10px;

}

.popup-lang{

padding:12px;

border-radius:12px;

font-size:16px;

font-weight:800;

background:var(--gradient-metal);

color:black;

}

/* ==========================================================
LOADER
========================================================== */

#loader{

position:fixed;

inset:0;

background:black;

display:flex;

justify-content:center;
align-items:center;

z-index:9999999;

transition:1s;

}

.loader-content{

text-align:center;

}

.loader-logo{

width:220px;

margin:auto;

margin-bottom:30px;

animation:
logoFloat 2s ease infinite;

}

.loader-ring{

width:80px;
height:80px;

border-radius:50%;

border:
4px solid rgba(255,255,255,.15);

border-top:
4px solid white;

margin:auto;

animation:
spinLoader 1s linear infinite;

}

.loader-content p{

margin-top:25px;

font-size:18px;

font-weight:800;

}

/* ==========================================================
CURSOR GLOW
========================================================== */


/* ==========================================================
PARTICLES
========================================================== */

#particles-container{

position:fixed;

inset:0;

pointer-events:none;

z-index:1;

}

/* ==========================================================
MOBILE OVERLAY
========================================================== */

#mobileOverlay{

position:fixed;

inset:0;

background:
rgba(0,0,0,.75);

z-index:8000;

display:none;

}

#mobileOverlay.active{

display:block;

}

/* ==========================================================
RESPONSIVE TABLET
========================================================== */

@media(max-width:1024px){

#navbar{

gap:15px;

}

#navbar a{

font-size:12px;

}

.hero-content h1{

font-size:55px;

}

}

/* ==========================================================
RESPONSIVE MOBILE
========================================================== */

@media(max-width:768px){

#mobile-menu{

display:block;

}

#navbar{

position:fixed;

top:0;
right:-100%;

width:320px;
height:100vh;

background:#000;

flex-direction:column;

justify-content:flex-start;

padding-top:120px;

transition:.4s;

z-index:9000;

}

#navbar.active{

right:0;

}

.hero{

height:auto;

padding-top:140px;
padding-bottom:100px;

}

.hero-logo{

width:180px;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:18px;

}

.hero-content h2{

font-size:22px;

}

.language-box{

padding:20px;

}

.language-logo{

width:150px;

}

.language-box h1{

font-size:50px;

}

}

/* ==========================================================
SMALL DEVICES
========================================================== */

@media(max-width:480px){

.header-logo{

width:55px;

}

.logo-text h1{

font-size:22px;

}

.logo-text p{

font-size:10px;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.contact-card,
.location-card,
.service-card{

padding:35px 20px;

}

.footer-container{

grid-template-columns:1fr;

}

}

/* ==========================================================
ANIMATIONS
========================================================== */

@keyframes logoFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

@keyframes logoZoom{

0%{
transform:scale(.3);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

@keyframes spinLoader{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

@keyframes pulseWhatsapp{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}

/* ==========================================================
ANTI BLACK SCREEN
========================================================== */

video{
display:block;
}

section{
position:relative;
z-index:2;
}

body,
html{
overflow-x:hidden;
max-width:100%;
}

#main-website{
background:#000;
min-height:100vh;
display:block;
}