
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #fff;
    direction: rtl;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1111;
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h2 {
    color: #005bac;
    font-size: 24px;
    font-weight: 800;
}

.logo-text p {
    color: #888;
    font-size: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links li a {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #0078d7;
}

.header-btn {
    background: #005bac;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.header-btn:hover {
    background: #00468a;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #005bac;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    text-align:center;

    padding:140px 20px 100px;

    isolation:isolate;
}

/* =========================
   BACKGROUND VIDEO
========================= */

.bg-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-3;

    filter:
        brightness(0.55)
        saturate(1.1);

    pointer-events:none;
}

/* =========================
   DARK OVERLAY
========================= */

.overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.164),
            rgba(0, 20, 40, 0.267)
        );

    z-index:-2;
}

/* =========================
   ANIMATED GLOW
========================= */

.hero::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    right:-150px;

    background:
        radial-gradient(
            rgba(0,183,255,0.22),
            transparent 70%
        );

    animation:glowMove 8s linear infinite;

    z-index:-1;
}

.hero::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-180px;
    left:-120px;

    background:
        radial-gradient(
            rgba(0,255,170,0.14),
            transparent 70%
        );

    animation:glowMove2 10s linear infinite;

    z-index:-1;
}

@keyframes glowMove{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(40px);
    }

    100%{
        transform:translateY(0);
    }
}

@keyframes glowMove2{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(40px);
    }

    100%{
        transform:translateX(0);
    }
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
    position:relative;
    z-index:5;

    width:100%;
    max-width:1200px;

    color:#fff;
}

.hero-content h1{
    font-size:clamp(42px,7vw,92px);

    line-height:1.1;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:28px;

    text-shadow:
        0 5px 20px rgba(0,0,0,0.35);
}

.hero-content h1 span{

    background:
        linear-gradient(
            to left,
            #43c7ff,
            #ffffff
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    max-width:950px;

    margin:auto;

    font-size:clamp(18px,2vw,28px);

    line-height:2;

    color:rgba(255,255,255,0.9);

    margin-bottom:15px;
}

/* =========================
   HERO BUTTONS
========================= */

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;

    flex-wrap:wrap;

    margin-top:45px;
}

.btn{
    position:relative;

    min-width:240px;
    height:72px;

    border-radius:18px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    overflow:hidden;

    color:#fff;

    font-size:22px;
    font-weight:800;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

    backdrop-filter:blur(8px);
}

.btn i{
    font-size:24px;
}

.btn::before{
    content:"";

    position:absolute;

    top:0;
    right:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.22),
            transparent
        );

    transition:0.7s;
}

.btn:hover::before{
    right:120%;
}

.btn:hover{
    transform:translateY(-6px) scale(1.02);
}

/* WhatsApp */

.whatsapp-btn{
    background:
        linear-gradient(
            135deg,
            #10d96f,
            #09b95c
        );

    box-shadow:
        0 14px 35px rgba(15,214,109,0.28);
}

/* Call Button */

.call-btn{
    background:
        linear-gradient(
            135deg,
            #006ed2,
            #00a6ff
        );

    box-shadow:
        0 14px 35px rgba(0,110,210,0.28);
}

/* =========================
   STATS
========================= */

.stats{
    display:flex;
    justify-content:center;
    gap:24px;

    flex-wrap:wrap;

    margin-top:70px;
}

.stat-box{
    width:210px;

    padding:32px 20px;

    border-radius:24px;

    background:
        rgba(255,255,255,0.10);

    border:
        1px solid rgba(255,255,255,0.14);

    backdrop-filter:blur(14px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.15);

    transition:
        transform .3s ease,
        background .3s ease,
        border .3s ease;
}

.stat-box:hover{
    transform:translateY(-10px);

    background:
        rgba(255,255,255,0.16);

    border:
        1px solid rgba(255,255,255,0.24);
}

.stat-box h3{
    font-size:54px;
    font-weight:900;

    margin-bottom:12px;

    color:#fff;
}

.stat-box span{
    font-size:18px;

    line-height:1.7;

    color:rgba(255,255,255,0.85);
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
    position: relative;

    padding: 130px 0;

    background:
        linear-gradient(
            to bottom,
            #f8fbff,
            #eef5fc
        );
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    text-align: center;

    margin-bottom: 80px;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #d9ecff,
            #eef7ff
        );

    color: #005bac;

    padding: 12px 28px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 800;

    margin-bottom: 24px;

    letter-spacing: 0.5px;
}

.section-title h2 {
    font-size: clamp(38px, 5vw, 68px);

    color: #072d57;

    font-weight: 900;

    margin-bottom: 25px;

    line-height: 1.3;

    position: relative;
}

.section-title h2::after {
    content: "";

    width: 90px;
    height: 5px;

    background:
        linear-gradient(
            to left,
            #006ed2,
            #00b7ff
        );

    position: absolute;

    bottom: -18px;
    right: 50%;

    transform: translateX(50%);

    border-radius: 30px;
}

.section-title p {
    color: #5d6774;

    font-size: clamp(18px, 2vw, 24px);

    line-height: 2;

    max-width: 950px;

    margin:
        38px auto 0;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 32px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card {
    background: #fff;

    border-radius: 30px;

    padding: 40px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.05);

    border:
        1px solid rgba(0,0,0,0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.08);
}

/* Gradient Top */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            to left,
            #006ed2,
            #00b7ff
        );
}

/* =========================
   SERVICE ICON
========================= */

.service-icon {
    width: 95px;
    height: 95px;

    border-radius: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 35px;

    background:
        linear-gradient(
            135deg,
            #006ed2,
            #00b7ff
        );

    box-shadow:
        0 15px 35px rgba(0,110,210,0.22);

    transition:
        transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform:
        rotate(-5deg)
        scale(1.05);
}

.service-icon i {
    font-size: 40px;
    color: #fff;
}

/* =========================
   SERVICE TEXT
========================= */

.service-card h3 {
    font-size: 36px;

    color: #072d57;

    margin-bottom: 20px;

    line-height: 1.5;

    font-weight: 900;
}

.service-card p {
    color: #66717f;

    font-size: 20px;

    line-height: 2;

    margin-bottom: 35px;
}

/* =========================
   SERVICE FOOTER
========================= */

.service-footer {
    border-top:
        1px solid #edf2f7;

    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-footer span {
    color: #006ed2;

    font-size: 17px;

    font-weight: 700;
}

.service-footer i {
    color: #00a6ff;

    font-size: 11px;
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: #11d669;
}

.float-btn.call {
    background: #005bac;
}

/* =========================
   WHY US SECTION
========================= */

.why-us-section {
    position: relative;
    padding: 120px 0;
    background: #005ea9;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: -120px;
    left: -80px;
}

.shape-2 {
    width: 230px;
    height: 230px;
    bottom: -100px;
    right: -60px;
}

.white-title h2,
.white-title p {
    color: #fff;
}

.white-title h2::after {
    background: #7fc6ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.feature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.4s;
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

.feature-icon {
    min-width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 30px;
    color: #ffd34d;
}

.feature-content h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 800;
}

.feature-content p {
    color: #d7e8f7;
    font-size: 18px;
    line-height: 1.9;
}

.why-cta {
    text-align: center;
    margin-top: 70px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    color: #005ea9;
    min-width: 420px;
    height: 75px;
    border-radius: 18px;
    font-size: 26px;
    font-weight: 800;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cta-btn i {
    color: #d40000;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section {
    padding: 120px 0;
    background: #f7f9fc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 420px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 25, 55, 0.85),
        rgba(0, 25, 55, 0.15)
    );
}

.portfolio-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #006ed2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
}

.portfolio-content {
    position: absolute;
    bottom: 25px;
    right: 25px;
    left: 25px;
    z-index: 2;
}

.portfolio-content h3 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 8px;
    font-weight: 800;
}

.portfolio-content span {
    color: #d8e5f3;
    font-size: 18px;
}

.portfolio-rating {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-rating small {
    color: #ffffff;
    font-size: 16px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars i {
    color: #ffd43b;
    font-size: 16px;
}

.portfolio-bottom-text {
    text-align: center;
    margin-top: 45px;
    color: #7a7a7a;
    font-size: 18px;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        repeating-linear-gradient(
            -45deg,
            #005cab,
            #005cab 20px,
            #04539a 20px,
            #04539a 40px
        );
    text-align: center;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-shape-1 {
    width: 220px;
    height: 220px;
    top: -40px;
    right: 25%;
}

.cta-shape-2 {
    width: 170px;
    height: 170px;
    bottom: -50px;
    left: 20%;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    color: #ffe14d;
    font-size: 40px;
}

.cta-section h2 {
    color: #fff;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-section p {
    color: #d7e8f7;
    font-size: 26px;
    line-height: 2;
    margin-bottom: 35px;
}

.cta-phone {
    margin-bottom: 40px;
}

.cta-phone a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 280px;
    height: 75px;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.cta-phone a:hover {
    transform: translateY(-5px);
}

.cta-phone i {
    color: #4dd2ff;
    font-size: 30px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.cta-main-btn {
    min-width: 280px;
    height: 75px;
    border-radius: 16px;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}

.cta-main-btn:hover {
    transform: translateY(-5px);
}

.call-btn-white {
    background: #fff;
    color: #005cab;
}

.call-btn-white i {
    color: #d00000;
}

.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.cta-feature i {
    color: #ffd84d;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #00264d;
    padding-top: 90px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 5px;
}

.footer-logo span {
    color: #8ec9ff;
    font-size: 18px;
}

.footer-desc {
    color: #bfd4ea;
    font-size: 22px;
    line-height: 2;
    margin-bottom: 35px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 22px;
}

.footer-contact li i {
    color: #00c2ff;
}

.footer-contact li a {
    color: #fff;
    transition: 0.3s;
}

.footer-contact li a:hover {
    color: #00c2ff;
}

.footer-title {
    font-size: 38px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 800;
}

.footer-title::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #006ed2;
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links li a {
    color: #bfd4ea;
    font-size: 22px;
    transition: 0.3s;
    position: relative;
    padding-right: 18px;
}

.footer-links li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00a6ff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-links li a:hover {
    color: #fff;
    padding-right: 24px;
}

.areas-text {
    color: #bfd4ea;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-whatsapp-btn {
    margin-top: 35px;
    width: 100%;
    height: 72px;
    border-radius: 16px;
    background: #10d669;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    transition: 0.3s;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom span {
    color: #8aa9c7;
    font-size: 18px;
}

/* =========================
   MAP SECTION
========================= */

.map-section {
    padding: 120px 0;
    background: #f5f8fc;
}

.map-wrapper {
    margin-top: 60px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 8px solid #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 550px;
    display: block;
    border: none;
}

.map-info {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.map-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.map-card:hover {
    transform: translateY(-8px);
}

.map-card i {
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 18px;
    background: #e8f3ff;
    color: #006ed2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.map-card h3 {
    color: #072d57;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 800;
}

.map-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* =========================
   DEVELOPER BOX
========================= */

.developer-box {
    padding: 25px 0 35px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.developer-box p {
    color: #8fb6d9;
    font-size: 16px;
    line-height: 1.8;
}

.developer-box a {
    color: #00c2ff;
    font-weight: 700;
    transition: 0.3s;
}

.developer-box a:hover {
    color: #ffffff;
}

/* =========================
   PREMIUM ANIMATIONS
========================= */

:root {
    --main-color: #006ed2;
    --secondary-color: #00b7ff;
}

/* Smooth rendering */

body {
    overflow-x: hidden;
}

/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Left Animation */

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: 1s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Right Animation */

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: 1s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom */

.reveal-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: 1s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   HEADER EFFECT
========================= */

.header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   PREMIUM HOVER EFFECTS
========================= */

.service-card,
.feature-card,
.portfolio-card,
.map-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.feature-card::before,
.map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,110,210,0.08),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before,
.feature-card:hover::before,
.map-card:hover::before {
    opacity: 1;
}

/* =========================
   GLOW EFFECT
========================= */

.whatsapp-btn,
.footer-whatsapp-btn,
.float-btn.whatsapp {
    box-shadow:
        0 0 0 rgba(17,214,105,0.5);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0% {
        box-shadow:
            0 0 0 0 rgba(17,214,105,0.5);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(17,214,105,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(17,214,105,0);
    }

}

/* =========================
   FLOATING ICONS
========================= */

.float-btn {
    animation: floating 3s ease-in-out infinite;
}

.float-btn.call {
    animation-delay: 1s;
}

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* =========================
   HERO CONTENT EFFECT
========================= */

.hero-content h1,
.hero-content p,
.hero-buttons,
.stats {
    animation: heroFadeUp 1.2s ease forwards;
}

.hero-content p {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

.stats {
    animation-delay: 0.9s;
}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================
   IMAGE HOVER
========================= */

.portfolio-card img {
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.portfolio-card:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

/* =========================
   BUTTON EFFECTS
========================= */

.btn,
.cta-btn,
.cta-main-btn,
.header-btn {
    position: relative;
    overflow: hidden;
}

.btn::before,
.cta-btn::before,
.cta-main-btn::before,
.header-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transition: 0.5s;
}

.btn:hover::before,
.cta-btn:hover::before,
.cta-main-btn:hover::before,
.header-btn:hover::before {
    right: 100%;
}

/* =========================
   ACTIVE NAV LINK
========================= */

.nav-links a.active {
    color: var(--main-color);
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--main-color);
    border-radius: 30px;
}

/* =========================
   PREMIUM SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #edf4fb;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #006ed2,
        #00b7ff
    );
    border-radius: 30px;
}