*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


:root{

    --primary:#0099ff;
    --secondary:#00d9ff;
    --dark:#062033;
    --light:#f3faff;
    --white:#ffffff;
    --text:#1b2733;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Cairo',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;

}



.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}



.section{

    padding:90px 0;

}





/* =========================
        LOADER
========================= */


.loader{

    position:fixed;
    inset:0;
    background:
    linear-gradient(135deg,#003b63,#00bfff);

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    color:white;
    z-index:99999;

    transition:.6s;

}



.snow-loader{

    font-size:80px;

    animation:
    snowRotate 2s linear infinite;

}



@keyframes snowRotate{

    from{
        transform:rotate(0);
    }

    to{
        transform:rotate(360deg);
    }

}







/* =========================
        HEADER
========================= */


.header{

    position:fixed;
    top:0;
    width:100%;

    background:
    rgba(255,255,255,.85);

    backdrop-filter:blur(15px);

    z-index:1000;

}



.nav-container{

    height:85px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}



.logo{

    font-size:32px;
    font-weight:900;

    color:var(--primary);

}



.logo small{

    display:block;

    font-size:12px;

    color:#333;

}



.navbar{

    display:flex;
    gap:30px;

}



.navbar a{

    text-decoration:none;

    color:#111;

    font-weight:700;

    transition:.3s;

}



.navbar a:hover{

    color:var(--primary);

}



.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

}







/* =========================
        HERO
========================= */


.hero{

     min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background-image:
    linear-gradient(
        90deg,
        rgba(0,40,80,.85),
        rgba(0,150,255,.45)
    ),
    url("./imgs/hero.jpeg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}



.overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    135deg,

    rgba(0,35,70,.95),

    rgba(0,180,255,.55)

    );

}



.hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:40px;

}



.hero-content{

    color:white;

}



.hero-badge{

    display:inline-block;

    background:#ffffff30;

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:20px;

}



.hero h1{

    font-size:60px;

    font-weight:900;

}



.hero h2{

    font-size:32px;

    margin:20px 0;

}



.hero p{

    font-size:19px;

    line-height:2;

}



.hero-buttons{

    margin-top:35px;

    display:flex;

    gap:20px;

}



.btn{

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.4s;

}



.btn:hover{

    transform:translateY(-7px);

}



.primary{

    background:

    linear-gradient(135deg,var(--secondary),var(--primary));

    color:white;

}



.secondary{

    border:2px solid white;

    color:white;

}



.hero-image img{

    width:30%;

    animation:

    floating 5s ease-in-out infinite;

}



@keyframes floating{

    50%{

        transform:translateY(-20px);

    }

}





.floating-card{

    position:absolute;

    background:white;

    padding:15px 25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:

    0 15px 40px #0003;

    animation:floating 4s infinite;

}



.floating-card i{

    color:var(--primary);

    font-size:25px;

}



.one{

    bottom:20%;

    right:8%;

}


.two{

    top:25%;

    left:8%;

}


.three{

    bottom:10%;

    left:30%;

}

/* =========================
        SECTION TITLE
========================= */


.section-title{

    text-align:center;

    font-size:42px;

    font-weight:900;

    margin-bottom:60px;

    color:var(--dark);

}




/* =========================
        SERVICES
========================= */


.cards{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}



.service-card{

    background:white;

    padding:40px 25px;

    border-radius:30px;

    text-align:center;

    box-shadow:

    0 15px 40px rgba(0,0,0,.08);

    transition:.5s;

}



.service-card:hover{

    transform:translateY(-15px);

    box-shadow:

    0 25px 60px rgba(0,153,255,.2);

}



.icon-box{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(

    135deg,

    var(--secondary),

    var(--primary)

    );

    color:white;

    font-size:35px;

}



.service-card h3{

    margin:25px 0 15px;

    font-size:25px;

}



.service-card p{

    color:#666;

    line-height:2;

}








/* =========================
        ABOUT
========================= */


.about{

    background:white;

}



.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}



.about-image img{

    width:100%;
    height: 500px !important;

    border-radius:35px;

    box-shadow:

    0 20px 50px #0002;

}



.small-title{

    color:var(--primary);

    font-weight:bold;

}



.about-content h2{

    font-size:40px;

    margin:20px 0;

}



.about-content p{

    line-height:2;

    color:#555;

}



.features{

    margin-top:30px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}



.features div{

    font-weight:bold;

}



.features i{

    color:#00b86b;

    margin-left:8px;

}








/* =========================
        GALLERY
========================= */


.gallery{

    overflow:hidden;

}



.gallery-slider{

    overflow:hidden;

    width:100%;

}



.gallery-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:

    galleryMove 25s linear infinite;

}



.gallery-item{

    width:320px;

    height:260px;

    border-radius:30px;

    overflow:hidden;

}



.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.gallery-item:hover img{

    transform:scale(1.15);

}



.gallery-slider:hover .gallery-track{

    animation-play-state:paused;

}



@keyframes galleryMove{


from{

transform:translateX(0);

}


to{

transform:translateX(50%);

}


}



/*=========================
      PORTFOLIO
=========================*/

.portfolio{

    background:#fff;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    cursor:pointer;

    box-shadow:0 15px 45px rgba(0,0,0,.12);

    transition:.45s;

}

.portfolio-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.7s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    background:linear-gradient(
        to top,
        rgba(0,35,70,.95),
        rgba(0,0,0,.15),
        transparent
    );

    opacity:0;

    transition:.45s;

}

.portfolio-overlay h3{

    font-size:26px;

    margin-bottom:10px;

    transform:translateY(30px);

    transition:.45s;

}

.portfolio-overlay p{

    line-height:1.8;

    transform:translateY(40px);

    transition:.55s;

}

.portfolio-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,153,255,.25);

}

.portfolio-card:hover img{

    transform:scale(1.15) rotate(2deg);

}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-card:hover h3,

.portfolio-card:hover p{

    transform:translateY(0);

}




/* =========================
        STATS
========================= */


.stats{

    background:

    linear-gradient(

    135deg,

    #003b63,

    #0099ff

    );

}



.stats-grid{

    display:grid;

    grid-template-columns:

    repeat(4,1fr);

    gap:25px;

}



.stat-box{

    background:#ffffff20;

    backdrop-filter:blur(10px);

    border-radius:25px;

    padding:35px 20px;

    text-align:center;

    color:white;

}



.stat-box i{

    font-size:40px;

    margin-bottom:15px;

}



.stat-box h3{

    font-size:45px;

}



.stat-box p{

    font-size:18px;

}








/* =========================
        LOCATION
========================= */


.location{

    background:#eef8ff;

}



.location-card{

    display:grid;

    grid-template-columns:

    2fr 1fr;

    background:white;

    border-radius:35px;

    overflow:hidden;

    box-shadow:

    0 20px 60px rgba(0,0,0,.12);

}



.map-side{

    min-height:500px;

}



.map-side iframe{

    width:100%;

    height:100%;

    border:0;

}



.info-side{

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}



.location-badge{

    width:75px;

    height:75px;

    border-radius:50%;

    background:

    linear-gradient(

    135deg,

    var(--secondary),

    var(--primary)

    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:35px;

}



.info-side h2{

    margin:20px 0;

    color:var(--primary);

}



.info-side p{

    line-height:2;

    color:#666;

}



.location-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:20px;

}



.location-item i{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e8f6ff;

    color:var(--primary);

}

/* =========================
        CONTACT
========================= */


.contact{

    background:white;

}



.contact-box{

    background:

    linear-gradient(

    135deg,

    #003b63,

    #0099ff

    );

    padding:60px 30px;

    border-radius:35px;

    text-align:center;

    color:white;

}



.contact-box h2{

    font-size:40px;

    margin-bottom:20px;

}



.contact-box p{

    font-size:20px;

    margin-bottom:35px;

}



.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}




/* =========================
        FLOAT BUTTONS
========================= */


.float{

    position:fixed;

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:30px;

    z-index:999;

    text-decoration:none;

    box-shadow:

    0 10px 30px #0004;

    transition:.3s;

}



.float:hover{

    transform:scale(1.1);

}



.whatsapp{

    left:30px;

    bottom:30px;

    background:#25d366;

}



.phone{

    left:30px;

    bottom:110px;

    background:#0099ff;

}







/* =========================
        FOOTER
========================= */


footer{

    background:#061d2d;

    color:white;

    padding:30px;

    text-align:center;

}







/* =========================
        REVEAL ANIMATION
========================= */


.reveal{

    opacity:0;

    transform:

    translateY(50px);

    transition:

    1s ease;

}



.reveal.active{

    opacity:1;

    transform:

    translateY(0);

}








/* =========================
        RIPPLE EFFECT
========================= */


.btn{

    position:relative;

    overflow:hidden;

}



.ripple{

    position:absolute;

    width:20px;

    height:20px;

    background:

    rgba(255,255,255,.6);

    border-radius:50%;

    transform:scale(0);

    animation:ripple .6s linear;

}



@keyframes ripple{


to{

transform:scale(15);

opacity:0;

}


}








/* =========================
        TABLET
========================= */


@media(max-width:992px){


.hero-container{

    grid-template-columns:1fr;

    text-align:center;

}



.hero h1{

    font-size:45px;

}



.hero-buttons{

    justify-content:center;

}



.hero-image{

    display:none;

}



.cards{

    grid-template-columns:

    repeat(2,1fr);

}



.about-grid{

    grid-template-columns:1fr;

}



.location-card{

    grid-template-columns:1fr;

}



.map-side{

    height:350px;

}



.stats-grid{

    grid-template-columns:

    repeat(2,1fr);

}



.floating-card{

    display:none;

}


}









/* =========================
        MOBILE
========================= */


@media(max-width:600px){



.container{

    width:92%;

}



.section{

    padding:60px 0;

}





.nav-container{

    height:75px;

}



.navbar{

    position:absolute;

    top:75px;

    right:-100%;

    width:100%;

    background:white;

    flex-direction:column;

    text-align:center;

    padding:30px;

    gap:20px;

    transition:.5s;

}



.navbar.active{

    right:0;

}



.menu-btn{

    display:block;

}



.hero h1{

    font-size:34px;

}



.hero h2{

    font-size:22px;

}



.hero p{

    font-size:16px;

}



.hero-buttons{

    flex-direction:column;

}



.btn{

    justify-content:center;

}





.section-title{

    font-size:32px;

}



.cards{

    grid-template-columns:1fr;

}



.features{

    grid-template-columns:1fr;

}



.gallery-item{

    width:260px;

    height:220px;

}



.stats-grid{

    grid-template-columns:1fr;

}



.info-side{

    padding:30px;

    text-align:center;

}



.location-item{

    justify-content:center;

}



.contact-box h2{

    font-size:30px;

}



.contact-buttons{

    flex-direction:column;

}



.float{

    width:55px;

    height:55px;

    font-size:25px;

}



}