:root{

/* main colors */

--primary-color: #6be5d8;
--secondary-color: #2ECC71;
--background-color: #000000;

/* text colors */

--text-color: #ffffff;
--text-muted: #000000;

/* borders */

--border-color: rgba(255,255,255,0.08);

/* buttons */

--button-bg: #6be5d8;
--button-text: #071c3a;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
img{
max-width:100%;
height:auto;
}
body{
    background:var(--background-color);
    color:white;
}

/* CONTAINER */

.container{
max-width:1200px;
width:90%;
margin:auto;
}

@media (max-width:768px){

.nav{
display:none;
}

.nav-button{
display:none;
}

.logo span{
font-size:18px;
}

}
@media (max-width:768px){

.hero-text h1{
font-size:36px;
}

.hero-text p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.hero-image{
width:100%;
}

}
@media (max-width:768px){

.about-text h2{
font-size:30px;
}

.experience-card{
padding:25px;
}

}

/* ================= HEADER ================= */

.header{
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo{
    font-size:22px;
    font-weight:bold;
    color:var(--secondary-color);;
}

/* NAVIGATION */

.nav{
    display:flex;
    gap:30px;
}

.nav a{
    color:#c3d4e6;
    text-decoration:none;
    font-size:16px;
    transition:0.3s;
}

.nav a:hover{
    color:white;
}

/* GET STARTED BUTTON */

.btn-start{
    background:var(--secondary-color);;
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
    color:#071c3a;
    font-weight:bold;
    transition:0.3s;
}

.btn-start:hover{
    opacity:0.85;
}

/* ================= HERO ================= */

.lang-switch{
    display:flex;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:30px;
    overflow:hidden;
    font-size:13px;
}

.lang-switch a{

    padding:6px 14px;
    text-decoration:none;
    color:#aaa;
    transition:0.3s;
    font-weight:500;

}

.lang-switch a:hover{
    color:white;
}

.lang-switch a.active{

    background:#2ecc71;
    color:#000;
    font-weight:600;

}

.hero{
    padding:120px 0;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.hero-text{
    width:50%;
}

.badge{
    display:inline-block;
    padding:6px 14px;
    background:var(--secondary-color);;
    border-radius:20px;
    font-size:14px;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:var(--secondary-color);;
}

.hero-text p{
    color:#ffffff;
    font-size:18px;
    margin-bottom:30px;
    line-height:1.6;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.btn{
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.primary{
    background:var(--secondary-color);;
    color:#071c3a;
}

.primary:hover{
    opacity:0.9;
}

.secondary{
    color: #000000;
    border:1px solid #355c86;
}

.secondary:hover{
    background:#373839;
}
.first{
    color: #fff;
    border:1px solid #355c86;
}

.first:hover{
    color: #fff;
}

/* ================= MOBILE MENU ================= */

/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
z-index:1001;
}

@media (max-width:768px){

.menu-toggle{
display:block;
}

/* القائمة */

.nav{
position:fixed;
top:0;
right:-220px;   /* مخفية خارج الشاشة */

width:220px;
height:100vh;

background:#ffffff;

display:flex;
flex-direction:column;
align-items:flex-start;

padding:100px 25px;
gap:20px;

transition:0.3s;
z-index:1000;
}

/* عند الفتح */

.nav.active{
right:0;
}

.nav a{
font-size:18px;
width:100%;
}

.nav-button{
display:none;
}

}

/* MOBILE */

@media (max-width:768px){

.menu-toggle{
display:block;
}

.nav-button{
display:none;
}

.nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#071c3a;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:30px 0;

    display:none;
}

.nav.active{
display:flex;
}

.nav a{
font-size:18px;
}

}

/* TRUSTED SECTION */

.trusted{
    display:flex;
    align-items:center;
    gap:15px;
    color:#000000;
}

.trusted img{
    height:40px;
}

/* HERO IMAGE */

.hero-image{
    width:45%;
    text-align:center;
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:20px;
}

/* ================= FOOTER ================= */

.footer{
    margin-top:80px;
    padding:30px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
    color:#000000;
}

/* ================= RESPONSIVE ================= */

@media (max-width:1000px){

.container{
    width:90%;
}

.hero-container{
    flex-direction:column;
    gap:60px;
    text-align:center;
}

.hero-text{
    width:100%;
}

.hero-image{
    width:80%;
}

.nav{
    display:none;
}

}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:bold;
color:#ffffff;
}

.logo img{
height:32px;
width:auto;
}


/* ================= ABOUT SECTION ================= */

.about{
    padding:120px 0;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* IMAGE */

.about-image{
    position:relative;
    width:50%;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

/* EXPERIENCE CARD */

.experience-card{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#ffffff;
    padding:40px 50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.experience-card .icon{
    font-size:28px;
    margin-bottom:10px;
    color:var(--secondary-color);;
}

.experience-card h2{
    color: #000000;
    font-size:40px;
    margin-bottom:5px;
}

.experience-card p{
    font-size:14px;
    color:#000000;
}

/* TEXT */

.about-text{
    width:50%;
}

.about-text h2{
    font-size:40px;
    margin-bottom:20px;
}

.about-text p{
    color:#ffffff;
    line-height:1.7;
    margin-bottom:30px;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:30px;
}

.feature{
    color:#c3d4e6;
}

/* LINK */

.learn-more{
    color:var(--secondary-color);;
    text-decoration:none;
    font-weight:bold;
}

/* RESPONSIVE */

@media (max-width:1000px){

.about-container{
    flex-direction:column;
}

.about-image,
.about-text{
    width:100%;
}

.features{
    grid-template-columns:1fr;
}

}


/* ================= SERVICES SECTION ================= */

.services{
    padding:120px 0;
    background:var(--background-color);; /* لون مختلف عن السيكشن السابق */
}

/* HEADER */

.services-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:60px;
}

.services-header h2{
    font-size:40px;
    margin-top:10px;
}

.services-header p{
    color:#000000;
    margin-top:10px;
}

.view-services{
    border:1px solid var(--secondary-color);;
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
    color:var(--secondary-color);;
    font-size:14px;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

@media (max-width:900px){

.services-grid{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}
@media (max-width:768px){

.advantages-header h2{
font-size:30px;
}

.adv-card{
padding:25px;
}

}
@media (max-width:600px){

.cta-buttons{
flex-direction:column;
}

.cta-box h2{
font-size:28px;
}

}
@media (max-width:600px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-logo{
justify-content:center;
}

.social-icons{
justify-content:center;
}

}
@media (max-width:600px){

.contact-stats{
flex-direction:column;
gap:15px;
text-align:center;
}

}

/* CARD */

.service-card{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

/* ICON */

.service-icon{
    font-size:26px;
    background:var(--secondary-color);;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    margin-bottom:20px;
}

/* TEXT */

.service-card h3{
    color: #000000;
    margin-bottom:15px;
    font-size:20px;
}

.service-card p{
    color:#000000;
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;
}

.service-card a{
    color:var(--secondary-color);
    text-decoration:none;
    font-weight:bold;
}

/* RESPONSIVE */

@media (max-width:1000px){

.services-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.services-grid{
    grid-template-columns:1fr;
}

}


/* ================= PRODUCTS SECTION ================= */

.products{
    padding:120px 0;
    background:var(--background-color);;
    text-align:center;
}

.products-header{
    max-width:600px;
    margin:auto;
    margin-bottom:70px;
}

.products-header h2{
    font-size:38px;
    margin:15px 0;
}

.products-header p{
    color:#000000;
}

/* GRID */

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

/* CARD */

.product-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    text-align:left;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.product-image{
    position:relative;
}

.product-image img{
    width:100%;
    display:block;
}

/* TAG */

.tag{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--secondary-color);;
    color:#071c3a;
    padding:5px 12px;
    border-radius:15px;
    font-size:12px;
    font-weight:bold;
}

.tag.green{
    background:var(--secondary-color);
}

/* CONTENT */

.product-content{
    padding:30px;
}

.product-content h3{
    margin-bottom:10px;
}

.product-content p{
    color:#000000;
    margin-bottom:20px;
    line-height:1.6;
}

/* FOOTER */

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.status{
    font-size:12px;
    color:var(--secondary-color);
    font-weight:bold;
}

.product-footer a{
    border:1px solid #355c86;
    padding:6px 14px;
    border-radius:20px;
    text-decoration:none;
    color:rgb(0, 0, 0);
    font-size:13px;
}

/* RESPONSIVE */

@media (max-width:1000px){

.products-grid{
    grid-template-columns:1fr;
}

}


/* ================= ADVANTAGES SECTION ================= */

.advantages{
    padding:120px 0;
    background:var(--background-color);
    text-align:center;
}

.advantages-header{
    max-width:650px;
    margin:auto;
    margin-bottom:70px;
}

.advantages-header h2{
    font-size:38px;
    margin:15px 0;
}

.advantages-header p{
    color:#000000;
}

/* GRID */

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.adv-card{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    transition:0.3s;
}

.adv-card:hover{
    transform:translateY(-8px);
}

/* ICON */

.adv-icon{
    font-size:26px;
    background:var(--secondary-color);
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    margin:auto;
    margin-bottom:20px;
}

/* TEXT */

.adv-card h3{
    color:#000000;
    margin-bottom:10px;
}

.adv-card p{
    color:#000000;
    font-size:14px;
    line-height:1.6;
}

/* RESPONSIVE */

@media (max-width:1000px){

.advantages-grid{
    grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.advantages-grid{
    grid-template-columns:1fr;
}

}


/* ================= TECH STACK ================= */

.tech-stack{
padding:70px 0;
background:var(--background-color);
text-align:center;
overflow:hidden;
}

.tech-title span{
letter-spacing:3px;
font-size:13px;
color:#ffffff;
display:block;
margin-bottom:40px;
}

/* CAROUSEL */

.tech-carousel{
overflow:hidden;
position:relative;
width:100%;
}

/* TRACK */

.tech-track{
display:flex;
gap:25px;
width:max-content;
animation:scrollTech 35s linear infinite;
}

/* ITEM */

.tech-item{
background:#ffffff;
padding:12px 25px;
border-radius:30px;
color:#c3d4e6;
font-size:15px;
display:flex;
align-items:center;
gap:8px;
white-space:nowrap;
}

/* ANIMATION */

@keyframes scrollTech{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.tech-track:hover{
animation-play-state:paused;
}
.tech-carousel{
overflow:hidden;
width:100%;
position:relative;
}

.tech-track{
display:flex;
gap:25px;
width:max-content;
animation:scrollTicker 75s linear infinite;
}

.tech-item{
background:#ffffff;
padding:12px 25px;
border-radius:30px;
color:#000000;
white-space:nowrap;
}

/* حركة مستمرة */

@keyframes scrollTicker{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* ================= CTA SECTION ================= */

.cta{
padding:120px 0;
background:var(--background-color);
}

.cta-box{
    background:#ffffff;
    padding:80px 40px;
    border-radius:20px;
    text-align:center;
    max-width:900px;
    margin:auto;
    border:1px solid rgba(255,255,255,0.08);
}

/* ICON */

.cta-icon{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:25px;
    background:#0c3b6b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

/* TITLE */

.cta-box h2{
    color: #000000;
    font-size:40px;
    margin-bottom:15px;
}

.cta-box h2 span{
color:var(--secondary-color);
}

/* TEXT */

.cta-box p{
color:#000000;
margin-bottom:35px;
}

/* BUTTONS */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:20px;
}

/* SMALL TEXT */

.cta-box small{
color:#000000;
font-size:12px;
}


/* ================= FOOTER ================= */

.footer{
background:var(--background-color);
padding-top:80px;
color:#c3d4e6;
}

/* GRID */

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:60px;
padding-bottom:50px;
}

/* LOGO */

.footer-logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:bold;
color:var(--secondary-color);
margin-bottom:20px;
}

.footer-logo img{
height:30px;
}

/* TEXT */

.footer-col p{
color:#ffffff;
margin-bottom:15px;
line-height:1.6;
}

/* LINKS */

.footer-col h4{
margin-bottom:20px;
color:white;
}

.footer-col a{
display:block;
text-decoration:none;
color:#ffffff;
margin-bottom:10px;
transition:0.3s;
}

.footer-col a:hover{
color:white;
}

/* SOCIAL */

.social-icons{
display:flex;
gap:15px;
margin-top:15px;
font-size:18px;
}

/* BOTTOM BAR */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.08);
padding:20px 0;
}

.footer-bottom-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.footer-badges{
display:flex;
gap:20px;
color:#000000;
font-size:14px;
}

/* RESPONSIVE */

@media (max-width:1000px){

.footer-grid{
grid-template-columns:1fr 1fr;
gap:40px;
}

.footer-bottom-inner{
flex-direction:column;
gap:10px;
text-align:center;
}

}



/* ================= SERVICES PAGE HERO ================= */

.services-hero{
padding:120px 0 80px 0;
text-align:center;
background:#000000;
}

.services-hero h1{
font-size:48px;
max-width:800px;
margin:auto;
margin-top:20px;
}

.services-hero h1 span{
color:var(--secondary-color);
}

.services-hero p{
color:#000000;
margin-top:20px;
max-width:650px;
margin-left:auto;
margin-right:auto;
}

.services-hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
}



/* ================= SERVICES GRID ================= */

.services-page{
padding:100px 0;
background:#000000;
}

.services-grid-page{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */

.service-card-page{
background:#fff;
padding:35px;
border-radius:18px;
transition:0.3s;
}

.service-card-page:hover{
transform:translateY(-6px);
}

/* ICON */

.service-card-page .icon{
font-size:24px;
background:var(--secondary-color);
width:50px;
height:50px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
}

/* TEXT */

.service-card-page h3{
    color: var(--secondary-color);
    margin-bottom:12px;
}

.service-card-page p{
color:#000000;
font-size:14px;
line-height:1.6;
margin-bottom:18px;
}

/* TAGS */

.tags{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:20px;
}

.tags span{
background:#000000;
padding:6px 10px;
border-radius:8px;
font-size:12px;
color:#ffffff;
}

/* LINK */

.service-card-page a{
text-decoration:none;
color:var(--secondary-color);
font-size:13px;
font-weight:bold;
}


/* RESPONSIVE */

@media (max-width:1000px){

.services-grid-page{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.services-grid-page{
grid-template-columns:1fr;
}

}


/* ================= SERVICE BENEFITS ================= */

.service-benefits{
padding:80px 0;
background:#000000;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.benefit-item{
display:flex;
gap:20px;
align-items:flex-start;
}

.benefit-icon{
width:45px;
height:45px;
background:var(--secondary-color);
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
}

.benefit-item h4{
margin-bottom:6px;
}

.benefit-item p{
color:#000000;
font-size:14px;
line-height:1.6;
}



/* ================= SERVICES CTA ================= */

.services-cta{
padding:60px 0 100px 0;
background:#000000;
}

.services-cta-box{
background:linear-gradient(135deg,#0f5d57,#ffffff);
padding:50px;
border-radius:18px;
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.cta-text h2{
font-size:28px;
margin-bottom:10px;
}

.cta-text p{
color:#c3d4e6;
max-width:500px;
}



/* RESPONSIVE */

@media (max-width:900px){

.benefits-grid{
grid-template-columns:1fr;
}

.services-cta-box{
flex-direction:column;
text-align:center;
}

}


/* ================= PRODUCTS HERO ================= */

.products-hero{
padding:120px 0 80px 0;
text-align:center;
background:#000000;
}

.products-hero h1{
font-size:46px;
max-width:700px;
margin:auto;
margin-top:15px;
}

.products-hero h1 span{
color:var(--secondary-color);
}

/* TABS */

.product-tabs{
margin-top:30px;
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.product-tabs button{
background:#ffffff;
border:none;
padding:10px 18px;
border-radius:25px;
color:#000000;
cursor:pointer;
}

.product-tabs .active{
background:var(--secondary-color);
color:#071c3a;
}



/* ================= PRODUCTS GRID ================= */

.products-page{
padding:100px 0;
background:#000000;
}

.products-grid-page{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */

.product-card-page{
background:#ffffff;
border-radius:18px;
overflow:hidden;
transition:0.3s;
}

.product-card-page:hover{
transform:translateY(-6px);
}

/* IMAGE */

.product-image{
position:relative;
}

.product-image img{
width:100%;
height:200px;
object-fit:cover;
}

.product-badge{
position:absolute;
top:15px;
right:15px;
background:#000000;
padding:6px 10px;
border-radius:8px;
font-size:12px;
}

/* CONTENT */

.product-content{
padding:25px;
}

.product-content h3{
margin-bottom:10px;
}

.product-content p{
color:#000000;
font-size:14px;
line-height:1.6;
margin-bottom:15px;
}

/* TAGS */

.product-tags{
display:flex;
gap:8px;
margin-bottom:15px;
flex-wrap:wrap;
}

.product-tags span{
background:#000000;
padding:5px 10px;
border-radius:6px;
font-size:12px;
}

/* BUTTON */

.product-btn{
display:inline-block;
background:var(--secondary-color);
color:#071c3a;
padding:10px 16px;
border-radius:8px;
text-decoration:none;
font-size:13px;
}



/* RESPONSIVE */

@media (max-width:1000px){

.products-grid-page{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.products-grid-page{
grid-template-columns:1fr;
}

}


/* ================= PRODUCTS CTA ================= */

.products-cta{
padding:120px 0;
background:#000000;
}

.products-cta-box{
max-width:900px;
margin:auto;
text-align:center;
background:#ffffff;
padding:70px 40px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.08);
}

/* ICON */

.products-cta-box .cta-icon{
width:60px;
height:60px;
margin:auto;
margin-bottom:20px;
background:#000000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
}

/* TITLE */

.products-cta-box h2{
font-size:32px;
margin-bottom:10px;
}

/* TEXT */

.products-cta-box p{
color:#000000;
max-width:600px;
margin:auto;
margin-bottom:30px;
line-height:1.6;
}

/* BUTTONS */

.products-cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}


/* ================= CONTACT PAGE ================= */

.contact-page{
padding:120px 0;
background:#000000;
}

/* HEADER */

.contact-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:80px;
}

.contact-header h1{
font-size:46px;
margin-top:10px;
}

.contact-header h1 span{
color:var(--secondary-color);
}

.contact-header p{
color:#000000;
margin-top:15px;
}

/* GRID */

.contact-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
}

/* FORM */

.contact-form{
background:#ffffff;
padding:40px;
border-radius:18px;
}

.form-row{
display:flex;
gap:15px;
margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
border:none;
border-radius:8px;
background:#0c3b6b;
color:white;
}

.contact-form textarea{
height:120px;
margin-top:15px;
margin-bottom:20px;
}

/* PROJECT TYPES */

.project-types{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:15px;
}

.project-types span{
background:#0c3b6b;
padding:6px 10px;
border-radius:6px;
font-size:12px;
cursor:pointer;
}

.project-types .active{
background:var(--secondary-color);
color:#071c3a;
}

/* CONTACT INFO */

.contact-info h4{
margin-bottom:20px;
}

.contact-item{
display:flex;
gap:15px;
margin-bottom:20px;
}

.contact-item span{
font-size:20px;
}

/* CARD */

.contact-card{
background:#ffffff;
padding:30px;
border-radius:16px;
text-align:center;
margin-top:30px;
}

.qr-box img{
width:80px;
margin-bottom:15px;
}

/* STATS */

.contact-stats{
display:flex;
justify-content:space-between;
margin-top:30px;
background:#ffffff;
padding:20px;
border-radius:14px;
}

.contact-stats strong{
color:var(--secondary-color);
font-size:18px;
}

/* RESPONSIVE */

@media (max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

.form-row{
flex-direction:column;
}

}

.nav a{
position:relative;
}

.nav a.active::after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:100%;
height:2px;
background:var(--secondary-color);
}