/*==================================================
SocialRank - Main Stylesheet
Version: 1.0
Author: SocialRank
==================================================*/


/*=========================
GOOGLE FONT
=========================*/

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


/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s;
}

ul{
    list-style:none;
}


/*=========================
ROOT COLORS
=========================*/

:root{

    --primary:#2563eb;
    --secondary:#0f172a;
    --accent:#22c55e;

    --text:#334155;

    --light:#ffffff;

    --bg:#f8fafc;

    --border:#e2e8f0;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:16px;

}


/*=========================
COMMON
=========================*/

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    font-size:14px;

}

.section-title h2{

    font-size:42px;

    color:var(--secondary);

    margin:15px 0;

}

.section-title p{

    color:#64748b;

    max-width:700px;

    margin:auto;

}


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

.btn{

    display:inline-block;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#1d4ed8;

}

.btn-outline{

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

    color:var(--primary);

    margin-left:15px;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}


/*=========================
HEADER
=========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

    gap:40px;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:var(--secondary);

}

.logo span{

    color:var(--primary);

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:var(--secondary);

    font-weight:500;

}

.nav-links a:hover,

.nav-links .active{

    color:var(--primary);

}


/*=========================
HERO
=========================*/

.hero{

    padding-top:150px;

    padding-bottom:100px;

    background:
    linear-gradient(135deg,#eef5ff 0%,#ffffff 100%);

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.badge{

    display:inline-block;

    background:#dbeafe;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:25px;

    font-weight:600;

}

.hero h1{

    font-size:62px;

    line-height:1.15;

    color:var(--secondary);

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:18px;

    color:#64748b;

    margin-bottom:35px;

}

.hero-buttons{

    margin-bottom:45px;

}

.hero-stats{

    display:flex;

    gap:50px;

}

.hero-stats h3{

    font-size:34px;

    color:var(--primary);

}

.hero-stats span{

    color:#64748b;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    animation:float 4s ease-in-out infinite;

}


/*=========================
ANIMATION
=========================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}

/*==================================================
SERVICES SECTION
==================================================*/

.services{
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:35px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(37,99,235,.12);
    border-color:#dbeafe;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    margin-bottom:25px;
}

.service-icon.facebook{
    background:#1877f2;
}

.service-icon.instagram{
    background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.service-icon.youtube{
    background:#ff0000;
}

.service-card h3{
    font-size:26px;
    margin-bottom:15px;
    color:var(--secondary);
}

.service-card p{
    color:#64748b;
    margin-bottom:20px;
}

.service-card ul{
    margin-bottom:25px;
}

.service-card li{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 0;
    color:#475569;
}

.service-card li i{
    color:var(--accent);
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:600;
}

.service-btn:hover{
    gap:15px;
}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{
    background:#f8fafc;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-box{
    background:#fff;
    border-radius:var(--radius);
    padding:35px;
    text-align:center;
    border:1px solid var(--border);
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.feature-box i{
    width:75px;
    height:75px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    background:#dbeafe;
    color:var(--primary);
    font-size:30px;
}

.feature-box h4{
    font-size:22px;
    color:var(--secondary);
    margin-bottom:15px;
}

.feature-box p{
    color:#64748b;
}

/*==================================================
HOW IT WORKS
==================================================*/

.steps{
    background:#fff;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:35px 25px;
    text-align:center;
    transition:.35s;
}

.step-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.step-card span{
    display:inline-flex;
    width:60px;
    height:60px;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.step-card h3{
    font-size:22px;
    color:var(--secondary);
    margin-bottom:15px;
}

.step-card p{
    color:#64748b;
}

/*==================================================
STATISTICS
==================================================*/

.stats{
    padding:80px 0;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box h2{
    font-size:52px;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box p{
    font-size:17px;
    opacity:.9;
}

/*==================================================
COMMON HOVER EFFECTS
==================================================*/

.service-card,
.feature-box,
.step-card{
    position:relative;
    overflow:hidden;
}

.service-card::before,
.feature-box::before,
.step-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#22c55e);
    transition:.4s;
}

.service-card:hover::before,
.feature-box:hover::before,
.step-card:hover::before{
    left:0;
}

/*==================================================
SECTION SPACING
==================================================*/

.services .section-title,
.why-us .section-title,
.steps .section-title{
    margin-bottom:60px;
}

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

.testimonials{
    background:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:var(--radius);
    border:1px solid var(--border);
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.stars{
    color:#f59e0b;
    font-size:20px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#64748b;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    color:var(--secondary);
    margin-bottom:4px;
}

.client span{
    color:#64748b;
    font-size:14px;
}


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

/*==================================================
FAQ ACCORDION
==================================================*/

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    box-shadow:var(--shadow);
}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:22px 25px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:600;

    color:var(--secondary);

}

.faq-question span{

    text-align:left;

}

.faq-question i{

    transition:.3s;

    color:var(--primary);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 25px 25px;

    color:#64748b;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

/*==================================================
CTA
==================================================*/

.cta{
    padding:90px 0;
}

.cta-box{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    padding:70px 50px;
    text-align:center;
    border-radius:20px;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto auto 35px;
    opacity:.95;
}

.cta-box .btn-primary{
    background:#fff;
    color:var(--primary);
}

.cta-box .btn-primary:hover{
    background:#f1f5f9;
}


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

.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:50px;
}

.footer h3,
.footer h4{
    color:#fff;
    margin-bottom:20px;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#cbd5e1;
}

.footer a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#1e293b;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--primary);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px 0;
}


/*==================================================
FLOATING BUTTONS
==================================================*/

.scroll-top,
.whatsapp-float{
    position:fixed;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    box-shadow:var(--shadow);
    z-index:999;
    transition:.3s;
}

.scroll-top{
    right:25px;
    bottom:95px;
    background:var(--primary);
}

.whatsapp-float{
    right:25px;
    bottom:25px;
    background:#25D366;
}

.scroll-top:hover,
.whatsapp-float:hover{
    transform:translateY(-5px);
}


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

@media(max-width:1100px){

.hero-wrapper,
.service-grid,
.features-grid,
.testimonial-grid,
.footer-grid{
grid-template-columns:repeat(2,1fr);
}

.steps-grid{
grid-template-columns:repeat(2,1fr);
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.hero h1{
font-size:48px;
}

}

@media(max-width:768px){

.hamburger{

display:block;

}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:#fff;

display:flex;

flex-direction:column;

padding:120px 35px;

gap:25px;

box-shadow:-20px 0 40px rgba(0,0,0,.12);

transition:.35s;

z-index:999;

}

.nav-links.active{

right:0;

}

.nav-links a{

font-size:18px;

}

body.menu-open{

overflow:hidden;

}

.hero-wrapper,

.service-grid,

.features-grid,

.steps-grid,

.stats-grid,

.testimonial-grid,

.footer-grid{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero-buttons{

display:flex;

flex-direction:column;

gap:15px;

}

.hero-buttons .btn{

margin:0;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:480px){

.hero h1{
font-size:38px;
}

.hero p{
font-size:16px;
}

.btn{
padding:14px 28px;
}

.service-card,
.feature-box,
.step-card,
.testimonial-card{
padding:25px;
}

.section-title h2{
font-size:30px;
}

}

/* Preloader */

#preloader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    transition:.4s;

    z-index:99999;

}

#preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader{

width:60px;

height:60px;

border:6px solid #ddd;

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

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}


/* Sticky */

.header.sticky{

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

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

backdrop-filter:blur(10px);

}


/* Hamburger */

/*==================================
HAMBURGER
==================================*/

.hamburger{

display:none;

width:45px;

height:45px;

cursor:pointer;

position:relative;

z-index:1001;

}

.hamburger span{

position:absolute;

left:8px;

width:28px;

height:3px;

background:var(--secondary);

border-radius:10px;

transition:.35s;

}

.hamburger span:nth-child(1){

top:12px;

}

.hamburger span:nth-child(2){

top:21px;

}

.hamburger span:nth-child(3){

top:30px;

}


/* Active */

.hamburger.active span:nth-child(1){

transform:rotate(45deg);

top:21px;

}

.hamburger.active span:nth-child(2){

opacity:0;

}

.hamburger.active span:nth-child(3){

transform:rotate(-45deg);

top:21px;

}

/* Theme */

.theme-toggle{

width:45px;

height:45px;

border:none;

background:#eef2ff;

border-radius:50%;

cursor:pointer;

margin-right:15px;

}

@media(max-width:768px){

.hamburger{

display:flex;

}

.nav-links{

position:fixed;

top:80px;

right:-100%;

width:280px;

height:100vh;

background:#fff;

flex-direction:column;

padding:40px;

transition:.4s;

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

}

.nav-links.active{

right:0;

}

.nav-actions{

display:flex;

align-items:center;

}

}


.menu-overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.45);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:998;

}

.menu-overlay.active{

opacity:1;

visibility:visible;

}

/*==================================
PAGE HERO
==================================*/

.page-hero{

    padding-top:calc(80px + 70px);

    padding-bottom:50px;

    background:linear-gradient(135deg,#eef5ff,#ffffff);

}

.service-icon.instagram{
    background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
    color:#fff;
}

.badge.facebook{
    background:#1877f2;
    color:#fff;
}

.badge.instagram{
    background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
    color:#fff;
}

.badge.youtube{
    background:#ff0000;
    color:#fff;
}

.contact-wrapper{

display:grid;

grid-template-columns:1.4fr .8fr;

gap:50px;

align-items:start;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

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

}

.input-group{

margin-bottom:20px;

}

.input-group input,
.input-group textarea,
.input-group select{

width:100%;

padding:16px 18px;

border:1px solid #ddd;

border-radius:12px;

font-size:15px;

font-family:inherit;

outline:none;

transition:.3s;

}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{

border-color:var(--primary);

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.info-box{

background:#fff;

padding:30px;

border-radius:18px;

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

text-align:center;

}

.info-box i{

font-size:32px;

color:var(--primary);

margin-bottom:15px;

}

.policy-content{

max-width:900px;

margin:auto;

background:#fff;

padding:50px;

border-radius:20px;

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

}

.policy-content h3{

margin-top:35px;

margin-bottom:15px;

color:var(--dark);

font-size:24px;

}

.policy-content p{

line-height:1.9;

color:#666;

margin-bottom:20px;

}

.policy-note{

display:flex;

align-items:center;

gap:12px;

background:#eef6ff;

padding:18px 22px;

border-radius:12px;

margin:35px 0;

border-left:4px solid var(--primary);

}

.policy-note i{

font-size:22px;

color:var(--primary);

}

.policy-note p{

margin:0;

color:#555;

}

/*==================================
Portfolio Ramesh Sharma
==================================*/

.hero-highlights{

display:flex;

gap:35px;

margin-top:45px;

flex-wrap:wrap;

}

.hero-highlights h3{

font-size:34px;

color:var(--primary);

margin-bottom:5px;

}

.hero-highlights span{

color:#666;

font-size:15px;

}

.gradient-text{

background:linear-gradient(90deg,#2563eb,#06b6d4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.typing-text{

font-size:34px;

margin:18px 0;

font-weight:600;

}

.hero-image{

position:relative;

}

.hero-image img{

width:100%;

max-width:430px;

display:block;

margin:auto;

}

.floating-card{

position:absolute;

background:#fff;

padding:12px 18px;

border-radius:50px;

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

font-size:14px;

font-weight:600;

display:flex;

align-items:center;

gap:10px;

animation:float 4s ease-in-out infinite;

}

.card1{

top:8%;

left:-20px;

}

.card2{

top:45%;

right:-20px;

}

.card3{

bottom:10%;

left:0;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}


/* ===== Portfolio Hero ===== */

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
    min-height:85vh;
}

.hero-content{
    max-width:650px;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:480px;
    height:auto;
    display:block;
}

@media (max-width:991px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:50px;
}

.hero-content{
    max-width:100%;
}

.hero-image img{
    max-width:340px;
}

}

/* Portfolio Hero Only */

@media (max-width:991px){

.portfolio-hero{
    min-height:auto !important;
    padding-bottom:20px !important;
}

}

/* =====================================
   Portfolio Hero Only
===================================== */

.portfolio-hero{
    padding-top:100px !important;
    padding-bottom:40px !important;
    min-height:78vh;
}

/* Portfolio Only */

.portfolio-stats .stat-box h2{
    color:#ffffff;
}

.portfolio-stats .stat-box p{
    color:rgba(255,255,255,.9) !important;
    font-size:16px;
    line-height:1.6;
}

/* Portfolio Statistics Section */

.portfolio-stats{
    padding:45px 0 !important;
}

/* =====================================
   Portfolio CTA
===================================== */

.portfolio-cta .cta-box p{
    color:#ffffff !important;
    opacity:0.95;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:20px auto 35px;
}

/* =====================================
Portfolio Timeline
===================================== */

.timeline{
    position:relative;
    max-width:900px;
    margin:60px auto 0;
    padding-left:40px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:48px;
    top:0;
    bottom:0;
    width:3px;
    background:#dbeafe;
}

.timeline-item{
    position:relative;
    display:flex;
    gap:35px;
    margin-bottom:50px;
}

.timeline-year{
    min-width:95px;
    height:44px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border-radius:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:15px;
    position:relative;
    z-index:2;
    box-shadow:0 8px 20px rgba(37,99,235,.25);
}

.timeline-year::after{
    content:"";
    position:absolute;
    width:14px;
    height:14px;
    background:#2563eb;
    border:4px solid #fff;
    border-radius:50%;
    left:-30px;
    top:50%;
    transform:translateY(-50%);
    box-shadow:0 0 0 3px #dbeafe;
}

.timeline-content{
    flex:1;
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.timeline-content h3{
    margin-bottom:12px;
    color:#0f172a;
}

.timeline-content p{
    color:#64748b;
    line-height:1.8;
}

@media(max-width:768px){

.timeline{
    padding-left:15px;
}

.timeline::before{
    left:22px;
}

.timeline-item{
    flex-direction:column;
    gap:18px;
}

.timeline-year::after{
    display:none;
}

.timeline-year{
    width:120px;
}

}

/*==================================
PORTFOLIO FEATURED SERVICES
==================================*/

.portfolio-services{
    background:#f8fafc;
}

.portfolio-services .service-grid{
    margin-top:50px;
    gap:30px;
}

.portfolio-services .service-card{
    position:relative;
    background:#fff;
    border:none;
    border-radius:20px;
    padding:40px 35px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.35s ease;
    overflow:hidden;
}

.portfolio-services .service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#22c55e);
}

.portfolio-services .service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(37,99,235,.18);
}

.portfolio-services .service-icon{
    width:78px;
    height:78px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#fff;
    margin-bottom:25px;
}

.portfolio-services h3{
    font-size:28px;
    margin-bottom:15px;
    color:var(--secondary);
}

.portfolio-services p{
    color:#64748b;
    margin-bottom:25px;
    line-height:1.8;
}

.portfolio-services ul{
    margin:25px 0 30px;
}

.portfolio-services li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    color:#475569;
    font-size:15px;
}

.portfolio-services li i{
    color:#22c55e;
    font-size:15px;
}

.portfolio-services .service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    border-radius:50px;
    background:#2563eb;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.portfolio-services .service-btn:hover{
    background:#1d4ed8;
    gap:15px;
}

.portfolio-services .service-btn i{
    transition:.3s;
}

.portfolio-services .service-card:hover .service-btn i{
    transform:translateX(5px);
}

/* Mobile */

@media(max-width:991px){

.portfolio-services .service-grid{
    grid-template-columns:1fr;
}

.portfolio-services .service-card{
    padding:35px 28px;
}

}

/* =====================================
   Portfolio Contact Mobile Fix
===================================== */

@media (max-width:768px){

.portfolio-page .contact-wrapper{
    display:grid;
    grid-template-columns:1fr !important;
    gap:30px;
}

.portfolio-page .contact-info,
.portfolio-page .contact-form{
    width:100%;
    max-width:100%;
}

.portfolio-page .contact-form{
    padding:25px;
}

.portfolio-page .contact-form form{
    width:100%;
}

.portfolio-page .input-group{
    width:100%;
}

.portfolio-page .input-group input,
.portfolio-page .input-group textarea{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.portfolio-page .btn{
    width:100%;
}

}

.contact-form select{
    width:100%;
    padding:16px 18px;
    border:1px solid #dbe4f0;
    border-radius:12px;
    font-size:16px;
    font-family:inherit;
    background:#fff;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.contact-form select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);
}


/* =====================================
   Contact Page form submit message
===================================== */
.success-message{
    margin-top:20px;
    padding:16px 20px;
    background:#dcfce7;
    border:1px solid #22c55e;
    color:#166534;
    border-radius:12px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.success-message i{
    color:#16a34a;
    font-size:20px;
}