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

MACIR EDUCATION LANDING PAGE

Author : ChatGPT

Version : 1.0

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

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

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

VARIABLES

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

:root{

--primary:#F58220;

--primary-dark:#E96B00;

--secondary:#FDB913;

--dark:#1f2937;

--text:#444;

--gray:#777;

--light:#f8f9fb;

--white:#fff;

--border:#ececec;

--shadow:0 15px 40px rgba(0,0,0,.08);

--shadow-hover:0 25px 60px rgba(0,0,0,.15);

--radius:18px;

--transition:.4s;

--container:1320px;

}

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

RESET

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

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:var(--text);

overflow-x:hidden;

line-height:1.6;

}

img{

width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

.container{

width:92%;

max-width:1320px;

margin:auto;

}

section{

padding:110px 0;

}

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

TYPOGRAPHY

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

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

color:var(--primary);

font-size:15px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:15px;

}

.section-title h2{

font-size:44px;

font-weight:800;

color:var(--dark);

margin-bottom:20px;

}

.section-title p{

max-width:700px;

margin:auto;

color:#666;

font-size:18px;

}

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

BUTTONS

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

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

background:linear-gradient(135deg,#F58220,#FDB913);

border-radius:50px;

color:#fff;

font-weight:700;

transition:.4s;

box-shadow:0 15px 35px rgba(245,130,32,.3);

}

.btn-primary:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(245,130,32,.45);

}

.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 35px;

border:2px solid #fff;

color:#fff;

border-radius:50px;

margin-left:15px;

transition:.4s;

}

.btn-secondary:hover{

background:#fff;

color:#222;

}

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

HEADER

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

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

transition:.4s;

padding:20px 0;

}

header.active{

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

backdrop-filter:blur(20px);

box-shadow:0 5px 20px rgba(0,0,0,.08);

padding:15px 0;

}

.navbar{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo img{

height:70px;

width:auto;

}

.nav-links{

display:flex;

gap:35px;

}

.nav-links a{

font-weight:600;

color:#fff;

transition:.3s;

position:relative;

}

header.active .nav-links a{

color:#222;

}

.nav-links a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

.nav-links a:hover::after{

width:100%;

}

.btn-nav{

padding:14px 28px;

background:var(--primary);

color:#fff;

border-radius:40px;

font-weight:600;

transition:.4s;

}

.btn-nav:hover{

background:#e96b00;

transform:translateY(-4px);

}

.menu-toggle{

display:none;

font-size:28px;

cursor:pointer;

color:#fff;

}

header.active .menu-toggle{

color:#222;

}

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

HERO

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

.hero{

height:100vh;

position:relative;

overflow:hidden;

}

.hero .swiper{

height:100%;

}

.hero .swiper-slide{

position:relative;

display:flex;

align-items:center;

justify-content:center;

}

.hero .swiper-slide img{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

object-fit:cover;

animation:zoomHero 15s linear infinite;

}

.overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:linear-gradient(to right,
rgba(0,0,0,.75),
rgba(0,0,0,.45));

}

.hero-content{

position:relative;

z-index:2;

width:92%;

max-width:1320px;

color:#fff;

}

.hero-content span{

display:inline-block;

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

padding:10px 25px;

border-radius:30px;

font-size:16px;

backdrop-filter:blur(8px);

margin-bottom:25px;

}

.hero-content h1{

font-size:68px;

line-height:1.15;

max-width:700px;

font-weight:800;

margin-bottom:25px;

}

.hero-content p{

font-size:22px;

max-width:650px;

margin-bottom:40px;

color:#eee;

}

.hero-buttons{

display:flex;

align-items:center;

flex-wrap:wrap;

}

.swiper-pagination-bullet{

width:14px;

height:14px;

background:#fff;

opacity:.5;

}

.swiper-pagination-bullet-active{

opacity:1;

background:var(--primary);

}

.swiper-button-next,
.swiper-button-prev{

color:#fff;

}

@keyframes zoomHero{

0%{

transform:scale(1);

}

100%{

transform:scale(1.15);

}

}
/*====================================================

DESTINATIONS

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

.destinations{

background:var(--light);

position:relative;

overflow:hidden;

}

.destination-grid{

display:grid;

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

gap:35px;

}

.destination-card{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.45s;

position:relative;

}

.destination-card:hover{

transform:translateY(-12px);

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

}

.destination-card img{

height:250px;

object-fit:cover;

transition:.7s;

}

.destination-card:hover img{

transform:scale(1.12);

}

.destination-info{

padding:28px;

}

.destination-info h3{

font-size:28px;

margin-bottom:12px;

color:var(--dark);

}

.destination-info p{

color:#666;

margin-bottom:20px;

line-height:1.8;

}

.destination-info a{

display:inline-flex;

align-items:center;

gap:10px;

font-weight:700;

color:var(--primary);

transition:.3s;

}

.destination-info a:hover{

gap:18px;

}

.destination-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:6px;

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

transform:scaleX(0);

transition:.4s;

}

.destination-card:hover::before{

transform:scaleX(1);

}


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

SERVICES

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

.services{

background:#fff;

position:relative;

}

.services-grid{

display:grid;

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

gap:35px;

}

.service-card{

background:#fff;

padding:45px 35px;

text-align:center;

border-radius:22px;

box-shadow:var(--shadow);

transition:.45s;

position:relative;

overflow:hidden;

border:1px solid #f1f1f1;

}

.service-card:hover{

transform:translateY(-12px);

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

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:0;

background:linear-gradient(135deg,var(--primary),var(--secondary));

transition:.5s;

z-index:0;

}

.service-card:hover::before{

height:100%;

}

.service-card>*{

position:relative;

z-index:2;

}

.service-card i{

width:95px;

height:95px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

font-size:42px;

border-radius:50%;

background:#fff4ea;

color:var(--primary);

margin-bottom:30px;

transition:.45s;

}

.service-card:hover i{

background:#fff;

transform:rotateY(180deg);

}

.service-card h3{

font-size:26px;

margin-bottom:18px;

color:var(--dark);

transition:.4s;

}

.service-card p{

color:#666;

line-height:1.9;

transition:.4s;

}

.service-card:hover h3,

.service-card:hover p{

color:#fff;

}


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

WHY MACIR

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

.why{

background:linear-gradient(180deg,#ffffff,#f8f9fb);

position:relative;

overflow:hidden;

}

.why-grid{

display:grid;

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

gap:35px;

}

.why-card{

background:#fff;

padding:40px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.45s;

border-top:5px solid transparent;

}

.why-card:hover{

transform:translateY(-12px);

border-top:5px solid var(--primary);

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

}

.why-card h3{

font-size:25px;

margin-bottom:18px;

color:var(--dark);

}

.why-card p{

color:#666;

line-height:1.9;

}


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

BACKGROUND SHAPES

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

.destinations::before{

content:"";

position:absolute;

width:550px;

height:550px;

border-radius:50%;

background:rgba(245,130,32,.05);

top:-250px;

right:-250px;

}

.services::after{

content:"";

position:absolute;

width:400px;

height:400px;

background:rgba(253,185,19,.06);

border-radius:50%;

left:-180px;

bottom:-180px;

}

.why::before{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:rgba(245,130,32,.04);

right:-120px;

bottom:-120px;

}


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

HOVER EFFECTS

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

.destination-card,

.service-card,

.why-card{

cursor:pointer;

}

.destination-card:hover h3,

.service-card:hover h3,

.why-card:hover h3{

transition:.3s;

}

.destination-card:hover h3{

color:var(--primary);

}


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

SECTION SPACING

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

.destinations .section-title,

.services .section-title,

.why .section-title{

margin-bottom:80px;

}
/*====================================================
COUNTERS
====================================================*/

.counter{

    background:linear-gradient(135deg,#F58220,#FDB913);

    padding:90px 0;

    color:#fff;

}

.counter-grid{

    display:grid;

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

    gap:35px;

}

.counter-card{

    text-align:center;

    padding:40px 20px;

    border-radius:20px;

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

    backdrop-filter:blur(12px);

    transition:.4s;

}

.counter-card:hover{

    transform:translateY(-10px);

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

}

.counter-card h2{

    font-size:58px;

    font-weight:800;

    margin-bottom:12px;

}

.counter-card span{

    font-size:18px;

    font-weight:500;

}



/*====================================================
PROCESS
====================================================*/

.process{

    background:#fff;

}

.timeline{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.step{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.4s;

    position:relative;

}

.step:hover{

    transform:translateY(-12px);

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

}

.step .number{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.step h3{

    font-size:26px;

    margin-bottom:15px;

    color:var(--dark);

}

.step p{

    color:#666;

    line-height:1.8;

}



/*====================================================
UNIVERSITIES
====================================================*/

.universities{

    background:var(--light);

}

.logos{

    display:grid;

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

    gap:35px;

    align-items:center;

}

.logo-item{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

    display:flex;

    justify-content:center;

    align-items:center;

    height:160px;

}

.logo-item:hover{

    transform:translateY(-8px);

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

}

.logo-item img{

    max-width:130px;

    max-height:70px;

    width:auto;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.7;

    transition:.4s;

}

.logo-item:hover img{

    filter:none;

    opacity:1;

}



/*====================================================
TESTIMONIALS
====================================================*/

.testimonials{

    background:#fff;

}

.testimonial-grid{

    display:grid;

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

    gap:35px;

}

.testimonial-card{

    background:#fff;

    border-radius:22px;

    box-shadow:var(--shadow);

    padding:35px;

    text-align:center;

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-12px);

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

}

.testimonial-card img{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    object-fit:cover;

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

    margin-bottom:20px;

}

.testimonial-card h3{

    font-size:24px;

    margin-bottom:10px;

    color:var(--dark);

}

.stars{

    color:#FDB913;

    font-size:20px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.9;

}



/*====================================================
ANIMATIONS
====================================================*/

.destination-card,

.service-card,

.why-card,

.step,

.logo-item,

.testimonial-card,

.counter-card{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/*====================================================
HOVER COLORS
====================================================*/

.step:hover h3,

.testimonial-card:hover h3{

    color:var(--primary);

}



/*====================================================
SECTION BACKGROUND
====================================================*/

.process::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(245,130,32,.04);

    border-radius:50%;

    left:-200px;

    top:-180px;

}

.universities::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(253,185,19,.06);

    border-radius:50%;

    right:-150px;

    bottom:-150px;

}
/*====================================================
FAQ
====================================================*/

.faq{

    background:var(--light);

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    margin-bottom:20px;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:25px 30px;

    font-size:20px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    transition:.3s;

}

.faq-question:hover{

    color:var(--primary);

}

.faq-answer{

    display:none;

    padding:0 30px 30px;

    color:#666;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .faq-question{

    color:var(--primary);

}


/*====================================================
CONTACT
====================================================*/

.contact{

    background:#fff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-info h2{

    font-size:44px;

    margin-bottom:20px;

    color:var(--dark);

}

.contact-info p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.contact-box{

    display:flex;

    gap:20px;

    margin-bottom:30px;

    align-items:flex-start;

}

.contact-box i{

    width:60px;

    height:60px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.contact-form{

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow);

}

.contact-form input,

.contact-form textarea,

.contact-form select{

    width:100%;

    padding:16px 20px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:16px;

    transition:.3s;

    font-family:inherit;

}

.contact-form input:focus,

.contact-form textarea:focus,

.contact-form select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(245,130,32,.15);

}

.contact-form button{

    width:100%;

    border:none;

    cursor:pointer;

}


/*====================================================
NEWSLETTER
====================================================*/

.newsletter{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    padding:90px 0;

}

.newsletter-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

.newsletter h2{

    color:#fff;

    font-size:38px;

}

.newsletter form{

    display:flex;

    gap:15px;

}

.newsletter input{

    width:350px;

    padding:18px;

    border:none;

    border-radius:50px;

}

.newsletter button{

    padding:18px 35px;

    border:none;

    border-radius:50px;

    background:#222;

    color:#fff;

    cursor:pointer;

}


/*====================================================
FOOTER
====================================================*/

footer{

    background:#1f2937;

    color:#fff;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

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

    gap:40px;

    margin-bottom:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

footer h3{

    margin-bottom:20px;

    font-size:24px;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    transition:.3s;

}

footer ul li a:hover{

    color:var(--secondary);

}

.socials{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.socials a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    transition:.3s;

}

.socials a:hover{

    background:var(--primary);

}

.copyright{

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

    padding-top:20px;

    text-align:center;

    color:#bbb;

}


/*====================================================
FLOAT BUTTONS
====================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    z-index:999;

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

}

#scrollTop{

    position:fixed;

    right:25px;

    bottom:100px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:999;

}


/*====================================================
RESPONSIVE
====================================================*/

@media(max-width:992px){

.nav-links{

display:none;

}

.menu-toggle{

display:block;

}

.btn-nav{

display:none;

}

.hero-content h1{

font-size:48px;

}

.contact-wrapper{

grid-template-columns:1fr;

}

.newsletter-box{

flex-direction:column;

text-align:center;

}

.newsletter form{

width:100%;

flex-direction:column;

}

.newsletter input{

width:100%;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

.section-title h2{

font-size:34px;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:18px;

}

.destination-grid,

.services-grid,

.why-grid,

.timeline,

.counter-grid,

.testimonial-grid,

.footer-grid{

grid-template-columns:1fr;

}

.contact-form{

padding:30px;

}

.logo img{

height:55px;

}

}

@media(max-width:576px){

.hero-content{

text-align:center;

}

.hero-buttons{

justify-content:center;

flex-direction:column;

gap:15px;

}

.btn-secondary{

margin-left:0;

}

.hero-content h1{

font-size:30px;

}

.section-title h2{

font-size:28px;

}

.newsletter h2{

font-size:28px;

}

.contact-info h2{

font-size:32px;

}

}


/*====================================================
END OF FILE
====================================================*/
.nav-links.show{
display:flex;
position:absolute;
top:90px;
left:20px;
right:20px;
background:#fff;
flex-direction:column;
padding:25px;
border-radius:18px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
gap:20px;
z-index:9999;
}

.nav-links.show a{
color:#222 !important;
}

.nav-links a.active{
color:var(--primary);
}