/* =====================================================
   SOFTOGRID PORTFOLIO
   Premium Enterprise Design
   Part 3A-1
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root{

    --primary:#102A43;
    --secondary:#1E88E5;
    --orange:#FF8A00;
    --gold:#D4AF37;
    --light:#F7FBFF;
    --white:#FFFFFF;
    --text:#344054;
    --border:#E5E7EB;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--white);
    color:var(--primary);
    overflow-x:hidden;

}

section{

    padding:100px 8%;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

/* HEADER */

/*=========================
HEADER
=========================*/

/*=========================
FLOATING HEADER
=========================*/

/*==========================
HEADER
==========================*/


.header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:90%;

    z-index:1000;


    /* subtle cyan glow behind navbar */

    filter:drop-shadow(0 0 20px rgba(0,234,255,0.25));

}



.navbar{

    height:75px;

    padding:0 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;


    /* SoftoGrid Glass Background */

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.18),
        rgba(16, 200, 216, 0.888)
    );


    backdrop-filter:blur(18px);


    /* Border Glow */

    border:1px solid rgba(255,255,255,0.35);


    box-shadow:

    0 8px 35px rgba(0,234,255,0.15),
    
    inset 0 0 20px rgba(255,255,255,0.08);


    border-radius:25px;

}

/*==========================
LOGO
==========================*/


.brand{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}



.brand img{

    width:45px;

    height:45px;

    object-fit:contain;

}



.brand-text h2{

    margin:0;

    font-size:24px;

    color:white;

    font-weight:700;

    letter-spacing:.5px;

}



.brand-text span{

    color:#00eaff;

    font-size:12px;

    letter-spacing:3px;

}



/*==========================
NAV LINKS
==========================*/


.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}



.nav-links a{

    color:rgb(9, 9, 9);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.3s;

}



.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#00eaff;

    transition:.3s;

}



.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}



.nav-links a:hover{

    color:#00eaff;

}


/* ===================================
            HERO
=================================== */

.portfolio-hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

    padding-top:140px;

    background:
    linear-gradient(
    180deg,
    #F7FBFF 0%,
    #FFFFFF 100%
    );

    position:relative;

    overflow:hidden;

}

/* Background Shapes */

.portfolio-hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#EAF6FF;

    border-radius:50%;

    top:-220px;
    right:-180px;

    z-index:0;

}

.portfolio-hero::after{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    background:rgba(255,138,0,.08);

    border-radius:50%;

    left:-100px;
    bottom:-80px;

}

.hero-left{

    position:relative;

    z-index:2;

}

.tag{

    display:inline-block;

    padding:10px 18px;

    background:#EAF6FF;

    color:var(--secondary);

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero-left h1{

    font-size:68px;

    font-weight:900;

    line-height:1.08;

    color:var(--primary);

    margin-bottom:25px;

}

.hero-left h1 span{

    background:
    linear-gradient(
    90deg,
    var(--orange),
    var(--gold)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-text{

    font-size:19px;

    line-height:1.9;

    color:#667085;

    max-width:700px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.btn-primary{

    padding:16px 34px;

    background:
    linear-gradient(
    90deg,
    var(--orange),
    var(--gold)
    );

    color:white;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:
    0 15px 35px rgba(255,138,0,.25);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    padding:16px 34px;

    border:2px solid var(--secondary);

    color:var(--secondary);

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--secondary);

    color:white;

}

/* ===================================
        HERO RIGHT
=================================== */

.hero-right{

    position:relative;

    height:600px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.glass-circle{

    position:absolute;

    border-radius:50%;

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.5);

}

.one{

    width:420px;
    height:420px;

    background:
    linear-gradient(
    135deg,
    rgba(30,136,229,.18),
    rgba(255,255,255,.55)
    );

}

.two{

    width:270px;
    height:270px;

    background:
    linear-gradient(
    135deg,
    rgba(255,138,0,.18),
    rgba(255,255,255,.65)
    );

    top:50px;
    left:30px;

}

.three{

    width:170px;
    height:170px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.25),
    rgba(255,255,255,.6)
    );

    right:30px;
    bottom:60px;

}

.main-card{

    width:270px;

    padding:45px;

    text-align:center;

    background:rgba(255,255,255,.78);

    backdrop-filter:blur(20px);

    border-radius:30px;

    box-shadow:
    0 30px 70px rgba(16,42,67,.12);

    z-index:10;

}

.main-card h2{

    font-size:70px;

    color:var(--orange);

    margin-bottom:10px;

}

.main-card p{

    color:#667085;

    font-weight:600;

}

/* ===================================
        SECTION HEADING
=================================== */

.section-heading{

    text-align:center;

    margin-bottom:80px;

}

.section-heading p{

    color:var(--orange);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:48px;

    color:var(--primary);

    font-weight:800;

}








/* =====================================================
        PART 3A-2
        FEATURED CASE STUDIES
===================================================== */

.case-section{

    background:var(--white);

    position:relative;

    overflow:hidden;

}

.case-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:rgba(30,136,229,.04);

    right:-300px;
    top:250px;

}

.case-study{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

    margin-bottom:120px;

    position:relative;

}

.case-study:last-child{

    margin-bottom:0;

}

.case-study.reverse{

    direction:rtl;

}

.case-study.reverse>*{

    direction:ltr;

}


/* =============================
        LEFT CONTENT
============================= */

.case-content{

    position:relative;

}

.case-number{

    position:absolute;

    top:-40px;
    left:-15px;

    font-size:120px;

    font-weight:900;

    color:#EAF6FF;

    z-index:0;

    user-select:none;

}

.industry{

    display:inline-block;

    padding:8px 18px;

    background:#FFF5E8;

    color:var(--orange);

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    position:relative;

    z-index:2;

}

.case-content h3{

    position:relative;

    z-index:2;

    font-size:42px;

    line-height:1.2;

    margin:25px 0;

    color:var(--primary);

}

.info-box{

    position:relative;

    z-index:2;

    background:var(--white);

    border-radius:20px;

    padding:28px;

    margin-bottom:25px;

    border:1px solid var(--border);

    box-shadow:

    0 20px 45px rgba(16,42,67,.06);

    transition:.35s;

}

.info-box:hover{

    transform:translateY(-6px);

    box-shadow:

    0 25px 55px rgba(30,136,229,.12);

}

.info-box h4{

    color:var(--secondary);

    font-size:20px;

    margin-bottom:15px;

}

.info-box p{

    color:#667085;

    line-height:1.8;

}

.info-box ul{

    list-style:none;

}

.info-box li{

    position:relative;

    padding-left:28px;

    margin:14px 0;

    color:#475467;

}

.info-box li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--gold);

    font-weight:700;

}


/* =============================
        IMPACT CARDS
============================= */

.impact{

    display:flex;

    gap:25px;

    margin-top:35px;

}

.impact div{

    flex:1;

    padding:30px;

    border-radius:22px;

    text-align:center;

    background:

    linear-gradient(
    135deg,
    #EAF6FF,
    #FFFFFF
    );

    border:1px solid rgba(30,136,229,.08);

    transition:.35s;

}

.impact div:hover{

    transform:translateY(-8px);

    box-shadow:

    0 25px 55px rgba(30,136,229,.12);

}

.impact h2{

    font-size:44px;

    color:var(--orange);

    margin-bottom:10px;

    font-weight:800;

}

.impact span{

    color:#667085;

    font-size:15px;

    font-weight:600;

}


/* =============================
        RIGHT VISUAL
============================= */

.case-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.image-card{

    width:360px;
    height:360px;

    border-radius:35px;

    background:

    linear-gradient(
    135deg,
    #EAF6FF,
    #FFFFFF
    );

    border:1px solid rgba(30,136,229,.08);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:

    0 30px 70px rgba(16,42,67,.08);

    transition:.45s;

    position:relative;

    overflow:hidden;

}

.image-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:

    radial-gradient(
    rgba(255,138,0,.18),
    transparent
    );

    top:-40px;
    right:-40px;

}

.image-card:hover{

    transform:

    translateY(-12px)
    rotate(-2deg);

    box-shadow:

    0 35px 80px rgba(255,138,0,.15);

}

.image-card i{

    font-size:90px;

    color:var(--secondary);

    margin-bottom:25px;

}

.image-card h3{

    font-size:28px;

    color:var(--primary);

    font-weight:700;

}


/* =============================
        CASE DIVIDER
============================= */

.case-study::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-60px;

    transform:translateX(-50%);

    width:120px;

    height:2px;

    background:

    linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
    );

}

.case-study:last-child::after{

    display:none;

}













/* =====================================================
        PART 3B
        METRICS + CAPABILITIES + ADVANTAGE
=====================================================*/


/*==========================
        METRICS
===========================*/

.metrics{

    background:
    linear-gradient(
    180deg,
    #F7FBFF,
    #FFFFFF
    );

    position:relative;

    overflow:hidden;

}

.metrics::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:rgba(255,138,0,.05);

    top:-250px;
    right:-250px;

}

.metrics-title{

    text-align:center;

    margin-bottom:70px;

}

.metrics-title p{

    color:var(--orange);

    font-weight:700;

    letter-spacing:2px;

}

.metrics-title h2{

    margin-top:18px;

    font-size:50px;

    color:var(--primary);

}

.metrics-title span{

    color:var(--secondary);

}



/*==========================
        METRIC GRID
===========================*/

.metric-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}

.metric-card{

    background:white;

    border-radius:28px;

    padding:45px 25px;

    text-align:center;

    border:1px solid rgba(30,136,229,.08);

    box-shadow:
    0 20px 50px rgba(16,42,67,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.metric-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(255,138,0,.15),
    transparent
    );

    top:-70px;
    right:-70px;

}

.metric-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 35px 70px rgba(30,136,229,.15);

}

.metric-card h2{

    display:inline-block;

    font-size:60px;

    color:var(--secondary);

    font-weight:800;

}

.metric-card span{

    font-size:28px;

    color:var(--gold);

    font-weight:700;

}

.metric-card p{

    margin-top:18px;

    color:#667085;

    line-height:1.7;

    font-weight:600;

}



/*==========================
      CAPABILITIES
===========================*/

.capabilities{

    background:#ffffff;

}

.capability-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

}

.capability-card{

    background:white;

    padding:45px;

    border-radius:30px;

    border:1px solid var(--border);

    box-shadow:
    0 20px 55px rgba(16,42,67,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.capability-card::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:100%;

    height:6px;

    background:
    linear-gradient(
    90deg,
    var(--secondary),
    var(--orange)
    );

    transform:scaleX(0);

    transition:.4s;

}

.capability-card:hover{

    transform:
    translateY(-12px);

}

.capability-card:hover::after{

    transform:scaleX(1);

}

.capability-card i{

    width:80px;
    height:80px;

    border-radius:50%;

    background:#EAF6FF;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--secondary);

    font-size:34px;

    margin-bottom:30px;

}

.capability-card h3{

    font-size:28px;

    color:var(--primary);

    margin-bottom:18px;

}

.capability-card p{

    color:#667085;

    line-height:1.8;

}



/*==========================
      ADVANTAGE
===========================*/

.advantage{

    background:
    linear-gradient(
    180deg,
    #FFFFFF,
    #F7FBFF
    );

}

.advantage-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

}

.advantage-card{

    background:white;

    border-radius:30px;

    padding:45px;

    text-align:center;

    border:1px solid rgba(30,136,229,.08);

    box-shadow:
    0 25px 60px rgba(16,42,67,.08);

    transition:.4s;

    position:relative;

}

.advantage-card:hover{

    transform:
    translateY(-15px);

    box-shadow:
    0 35px 80px rgba(255,138,0,.15);

}

.icon{

    width:90px;
    height:90px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:
    linear-gradient(
    135deg,
    var(--secondary),
    var(--orange)
    );

    color:white;

    font-size:38px;

}

.advantage-card h3{

    font-size:28px;

    color:var(--primary);

    margin-bottom:18px;

}

.advantage-card p{

    color:#667085;

    line-height:1.8;

}



/*==========================
    FLOATING DECORATION
===========================*/

.capability-card,
.metric-card,
.advantage-card{

    isolation:isolate;

}

.capability-card::before,
.advantage-card::before{

    content:"";

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(30,136,229,.10),
    transparent
    );

    left:-40px;
    bottom:-40px;

    z-index:-1;

}




/* =====================================================
        PART 3C
        CTA + RESPONSIVE + ANIMATIONS
=====================================================*/


/*==================================
            FOOTER
==================================*/

#footer{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#081220 0%,#050b15 100%);
    padding:90px 8% 30px;
}

/*==========================
TOP GLOW LINE
==========================*/

.footer-top-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,
    transparent,
    #00eaff,
    #4df6ff,
    transparent);
    box-shadow:0 0 25px #00eaff;
}

/*==========================
BACKGROUND
==========================*/

.footer-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}

.footer-bg span{
    position:absolute;
    border-radius:50%;
    background:rgba(0,234,255,.08);
    filter:blur(90px);
    animation:footerFloat 12s ease-in-out infinite;
}

.footer-bg span:nth-child(1){
    width:240px;
    height:240px;
    left:-60px;
    top:-40px;
}

.footer-bg span:nth-child(2){
    width:300px;
    height:300px;
    right:-100px;
    bottom:-120px;
    animation-delay:2s;
}

.footer-bg span:nth-child(3){
    width:220px;
    height:220px;
    left:45%;
    top:30%;
    animation-delay:4s;
}

/*==========================
CONTAINER
==========================*/

#footer .container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
}

/*==========================
CONTENT
==========================*/

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
    margin-bottom:70px;
}

/*==========================
LOGO
==========================*/

.footer-logo{
    width:70px;
    margin-bottom:18px;
}

.footer-brand h2{
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
}

.footer-brand p{
    color:rgba(255,255,255,.72);
    line-height:1.9;
    max-width:420px;
}

/*==========================
HEADINGS
==========================*/

.footer-links h3,
.footer-contact h3{
    color:#fff;
    margin-bottom:25px;
    position:relative;
    display:inline-block;
}

.footer-links h3::after,
.footer-contact h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:2px;
    background:#00eaff;
}

/*==========================
LINKS
==========================*/

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    transition:.35s;
}

.footer-links a:hover{
    color:#00eaff;
    padding-left:8px;
}

/*==========================
CONTACT
==========================*/

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-contact-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,234,255,.08);
    color:#00eaff;
    border:1px solid rgba(0,234,255,.2);
}

.footer-contact-item a,
.footer-contact-item span{
    color:rgba(255,255,255,.72);
    text-decoration:none;
}

.footer-contact-item a:hover{
    color:#00eaff;
}

/*==========================
BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-copy{
    color:rgba(255,255,255,.6);
}

/*==========================
SOCIAL
==========================*/

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,234,255,.15);
    transition:.35s;
}

.footer-social a:hover{
    background:#00eaff;
    color:#081220;
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(0,234,255,.5);
}

/*==========================
BACK TO TOP
==========================*/

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    outline:none;
    cursor:pointer;
    border-radius:50%;
    background:#0777e0;
    color:#081220;
    font-size:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 25px rgba(0,234,255,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

#backToTop.active{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    transform:translateY(-8px);
}

/*==========================
ANIMATION
==========================*/

@keyframes footerFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-35px);
    }

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.footer-content{
grid-template-columns:1fr;
gap:45px;
}

.footer-brand p{
max-width:100%;
}

}

@media(max-width:768px){

#footer{
padding:70px 20px 25px;
}

.footer-brand h2{
font-size:26px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-social{
justify-content:center;
}

#backToTop{
right:20px;
bottom:20px;
width:48px;
height:48px;
}

}

@media(max-width:480px){

.footer-logo{
width:60px;
}

.footer-brand h2{
font-size:22px;
}

.footer-contact-item{
align-items:flex-start;
}

}







/*====================================================
SOFTOGRID RESPONSIVE CSS
DESKTOP + TABLET + MOBILE
====================================================*/


/*==============================
GLOBAL RESPONSIVE FIX
==============================*/


*{
    box-sizing:border-box;
}


img{
    max-width:100%;
    height:auto;
}


html,body{

    width:100%;

    overflow-x:hidden;

}


/*====================================================
TABLET DEVICES
768px - 1100px
====================================================*/


@media(max-width:1100px){


.header{

    width:94%;

}



.navbar{

    padding:0 20px;

}



/* NAVIGATION */

.nav-links{

    gap:18px;

}


.nav-links a{

    font-size:14px;

}



/* HERO */


.hero{

    padding-top:150px;

}


.hero h1{

    font-size:55px;

}


.hero p{

    max-width:600px;

    font-size:17px;

}



/* ABOUT */


.about-container{

    gap:40px;

}



/* SERVICES */


.services-grid{

    grid-template-columns:repeat(2,1fr);

}



/* INDUSTRIES */


.industry-grid{

    grid-template-columns:repeat(2,1fr);

}



/* PORTFOLIO */


.portfolio-grid{

    grid-template-columns:repeat(2,1fr);

}



/* CONTACT */


.contact-container{

    gap:30px;

}



}



/*====================================================
MOBILE DEVICES
max-width 767px
====================================================*/


@media(max-width:767px){


/*==============================
HEADER
==============================*/


.header{

    width:94%;

    top:10px;

}



.navbar{

    height:auto;

    padding:12px 15px;

    flex-direction:column;

    gap:12px;

    border-radius:22px;

}



/* LOGO */


.brand img{

    width:35px;

}



.brand-text h2{

    font-size:20px;

}



.brand-text span{

    font-size:9px;

}



/* NAV LINKS */


.nav-links{

    width:100%;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px 14px;

}



.nav-links a{

    font-size:12px;

}



/*==============================
HERO
==============================*/


.hero{

    padding-top:160px;

    text-align:center;

}



.hero h1{

    font-size:36px;

    line-height:1.2;

}



.hero p{

    font-size:15px;

    line-height:1.6;

}



/* BUTTONS */


.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.hero-buttons a{

    width:100%;

}



/*==============================
COMMON SECTION
==============================*/


section{

    padding:60px 0;

}



.container{

    width:90%;

}



.section-title{

    font-size:30px;

    text-align:center;

}


.section-subtitle{

    font-size:15px;

    text-align:center;

}



/*==============================
ABOUT SECTION
==============================*/


.about-container{

    display:flex;

    flex-direction:column;

    text-align:center;

}



.about-content{

    width:100%;

}


.about-image{

    width:100%;

}



/*==============================
SERVICES
==============================*/


.services-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}



.service-card{

    width:100%;

    padding:25px;

}



/*==============================
INDUSTRIES
==============================*/


.industry-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}



/*==============================
PORTFOLIO
==============================*/


.portfolio-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}



.project-card{

    width:100%;

}



/*==============================
CONTACT
==============================*/


.contact-container{

    display:flex;

    flex-direction:column;

    width:100%;

}



.contact-card{

    width:100%!important;

    max-width:350px;

    margin:auto;

}



.contact-form{

    width:100%;

}



input,
textarea{

    width:100%;

}



/*==============================
FOOTER
==============================*/


.footer-content{

    display:flex;

    flex-direction:column;

    text-align:center;

    gap:20px;

}



}





/* =================================
   RESPONSIVE DESIGN FIX
   ADDED ONLY - NO ORIGINAL CHANGES
================================= */

/* Large Desktop */
@media (min-width:1400px){

}


/* Laptop */
@media (max-width:1200px){

}


/* Tablet */
@media (max-width:992px){

}


/* Mobile */
@media (max-width:768px){

}


/* Small Mobile */
@media (max-width:480px){

}