/*==================================================
NISAN TECHNOLOGIES
Technology Solutions That Drive Business Growth
Author : Nisan Technologies
===================================================*/

/*==================================================
GOOGLE FONTS
===================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&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:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#444;
    background:#ffffff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.3s;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}


/*==================================================
COLORS
===================================================*/

:root{

    --primary:#0056D2;

    --secondary:#0A2540;

    --accent:#00A3FF;

    --light:#F7F9FC;

    --white:#ffffff;

    --text:#444444;

    --heading:#1B1F24;

    --border:#E8ECF2;

}


/*==================================================
COMMON BUTTONS
===================================================*/

.btn-primary{

    display:inline-block;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-4px);

}


.btn-secondary{

    display:inline-block;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    margin-left:15px;

    transition:.35s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
SECTION TITLE
===================================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-family:'Poppins',sans-serif;

    font-size:46px;

    color:var(--heading);

    margin:18px 0;

    line-height:1.2;

}

.section-title p{

    width:700px;

    max-width:100%;

    margin:auto;

    color:#666;

    font-size:17px;

}

/*==================================================
TOP BAR
===================================================*/

.top-bar{

    background:#071A2F;

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left span{

    margin-right:25px;

}

.top-right{

    font-weight:600;

}

/*==================================================
HEADER
===================================================*/

header{

    position:sticky;

    top:0;

    background:#fff;

    z-index:999;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo h2{

    font-size:34px;

    color:var(--primary);

    font-family:'Poppins';

    font-weight:800;

    letter-spacing:1px;

}

.logo p{

    font-size:13px;

    letter-spacing:4px;

    color:#777;

}

nav ul{

    display:flex;

    gap:38px;

}

nav a{

    color:#333;

    font-weight:600;

}

nav a:hover{

    color:var(--primary);

}

nav ul li a.active{
    color: var(--primary);
}

nav ul li a.active::after{
    width:100%;
}

/*==================================================
HERO
===================================================*/

.hero{

    padding:120px 0;

    background:linear-gradient(135deg,#F8FAFD,#EDF5FF);

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    background:#EAF3FF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

.hero h1{

    font-family:'Poppins';

    font-size:62px;

    line-height:1.15;

    color:#132238;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:19px;

    color:#666;

    margin-bottom:40px;

}

.hero-buttons{

    margin-bottom:60px;

}

.hero-features{

    display:flex;

    gap:50px;

}

.hero-features strong{

    display:block;

    color:var(--primary);

    font-size:32px;

}

.hero-features span{

    color:#666;

    font-size:15px;

}

.hero-image img{

    width:100%;

}

/*==================================================
TRUST BAR
===================================================*/

.trust-bar{

    background:#fff;

    padding:35px 0;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

}

.trust-bar .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    gap:25px;

}

.trust-item{

    font-weight:600;

    color:#222;

}

/*==================================================
ABOUT SECTION
===================================================*/

.about{

    padding:120px 0;

    background:#ffffff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content h3{

    font-size:38px;

    font-family:'Poppins',sans-serif;

    color:var(--heading);

    margin-bottom:25px;

    line-height:1.3;

}

.about-content p{

    color:#666;

    margin-bottom:22px;

    font-size:17px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin:40px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.feature i{

    color:var(--primary);

    font-size:20px;

}

.about-buttons{

    margin-top:20px;

}

.btn-outline{

    display:inline-block;

    margin-left:15px;

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    font-weight:600;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*==================================================
SERVICES
===================================================*/

.services{

    background:#F8FAFC;

    padding:120px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    transition:.35s;

    border:1px solid #e8edf4;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#EDF5FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:30px;

}

.service-card h3{

    font-size:25px;

    margin-bottom:18px;

    color:var(--heading);

}

.service-card p{

    color:#666;

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:700;

}

.service-card:hover .service-icon{

    background:var(--primary);

    color:#fff;

}

/*==================================================
WHY CHOOSE US
===================================================*/

.why-us{

    padding:120px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.why-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    text-align:center;

    transition:.35s;

    border:1px solid #edf1f5;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.why-icon{

    width:90px;

    height:90px;

    background:#EDF5FF;

    color:var(--primary);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:30px;

    font-size:36px;

}

.why-card h3{

    margin-bottom:18px;

    font-size:25px;

}

.why-card p{

    color:#666;

}

/*==================================================
INDUSTRIES
===================================================*/

.industries{

    padding:120px 0;

    background:#F8FAFC;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.industry-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

    border:1px solid #edf2f7;

}

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.industry-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#EDF5FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.industry-card h3{

    margin-bottom:15px;

}

.industry-card p{

    color:#666;

}

/*==================================================
TECHNOLOGIES
===================================================*/

.technologies{

    padding:120px 0;

    background:#fff;

}

.tech-category{

    margin-bottom:60px;

}

.tech-category h3{

    margin-bottom:25px;

    font-size:28px;

    color:var(--heading);

}

.tech-grid{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.tech-item{

    background:#EDF5FF;

    color:var(--primary);

    padding:15px 24px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.tech-item:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*==================================================
FEATURED PROJECTS
===================================================*/

.featured-projects{

    padding:120px 0;

    background:#F8FAFC;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    border:1px solid #e9edf4;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.project-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.05);

}

.project-content{

    padding:35px;

}

.project-category{

    display:inline-block;

    background:#EDF5FF;

    color:var(--primary);

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.project-content h3{

    font-size:28px;

    margin-bottom:18px;

    color:var(--heading);

}

.project-content p{

    color:#666;

    margin-bottom:25px;

}

.project-content ul{

    margin-bottom:25px;

}

.project-content ul li{

    padding:8px 0;

    color:#555;

}

.project-content ul li::before{

    content:"✓";

    color:var(--primary);

    margin-right:10px;

    font-weight:bold;

}

.project-content a{

    font-weight:700;

    color:var(--primary);

}

.project-button{

    margin-top:60px;

    text-align:center;

}

/*==================================================
STATISTICS
===================================================*/

.statistics{

    padding:120px 0;

    background:#ffffff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:#F8FAFC;

    padding:45px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:52px;

    color:var(--primary);

    margin-bottom:10px;

    transition:.3s;

}

.stat-card:hover h3{

    color:#fff;

}

.stat-card h4{

    font-size:22px;

    margin-bottom:15px;

}

.stat-card p{

    color:#666;

}

.stat-card:hover p{

    color:#eef5ff;

}

/*==================================================
CALL TO ACTION
===================================================*/

.cta{

    padding:120px 0;

    background:linear-gradient(135deg,#0056D2,#0A2540);

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:50px;

    font-family:'Poppins';

    margin:20px 0;

}

.cta p{

    max-width:780px;

    margin:0 auto 40px;

    font-size:18px;

    color:rgba(255,255,255,.90);

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#EDF5FF;

}

.cta .btn-secondary{

    border:2px solid #fff;

    color:#fff;

}

.cta .btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
CONTACT
===================================================*/

.contact{

    padding:120px 0;
    background:#F8FAFC;

}

.contact-wrapper{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

.contact-info{
    flex:0 0 380px;

    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-info h3{

    font-size:32px;
    margin-bottom:35px;
    color:var(--heading);

}

.contact-item{

    margin-bottom:35px;
    padding-bottom:25px;
    border-bottom:1px solid #ECECEC;

}

.contact-item:last-child{

    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;

}

.contact-item h4{

    color:var(--primary);
    font-size:18px;
    margin-bottom:10px;

}

.contact-item p{

    color:#666;
    line-height:1.8;

}

/* FORM */

.contact-form{
    flex:1;

    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form form{

    display:grid;
    gap:22px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:18px 20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:inherit;
    transition:.3s;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(0,86,210,.08);

}

.contact-form textarea{

    resize:vertical;
    min-height:180px;

}

.contact-form button{

    width:220px;
    cursor:pointer;
    border:none;

}

/*==================================================
FOOTER
==================================================*/

footer{
    background:#071A2F;
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:50px;
}

.footer-about{
    padding-right:30px;
}

.footer-logo{
    width:70px;
    margin-bottom:20px;
}

.footer-tagline{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin:20px 0;
}

.footer-grid h3{
    font-size:30px;
    margin-bottom:20px;
}

.footer-grid h4{
    margin-bottom:20px;
    font-size:20px;
}

.footer-grid p{
    color:#cfd8e3;
    line-height:1.8;
}

.footer-grid ul{
    list-style:none;
    padding:0;
}

.footer-grid li{
    margin-bottom:12px;
}

.footer-grid a{
    color:#cfd8e3;
}

.footer-grid a:hover{
    color:#fff;
}

.footer-contact{
    margin-top:25px;
}

.footer-contact p{
    margin-bottom:12px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
}

.footer-social a:hover{
    background:#0056D2;
}

/*==================================================
RESPONSIVE
===================================================*/

@media(max-width:992px){

.hero-grid,
.about-wrapper,
.contact-wrapper{

    grid-template-columns:1fr;

}

.services-grid,
.projects-grid,
.stats-grid,
.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.industry-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:1fr 1fr;

}

nav{

    display:none;

}

}


@media(max-width:768px){

.services-grid,
.projects-grid,
.stats-grid,
.why-grid,
.industry-grid,
.footer-grid{

    grid-template-columns:1fr;

}

.hero h1{

    font-size:42px;

}

.section-title h2{

    font-size:34px;

}

.contact-form{

    padding:35px;

}

.contact-info{

    padding:35px;

}

.btn-primary,
.btn-secondary{

    display:block;
    width:100%;
    margin:10px 0;

}

}

@media(max-width:991px){

.contact-wrapper{
    flex-direction:column;
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

.footer-bottom{
    flex-direction:column;
    gap:20px;
    text-align:center;
}

}

@media(max-width:767px){

.footer-grid{
    grid-template-columns:1fr;
}

}

/*==================================================
ABOUT PAGE HERO
==================================================*/

.page-hero{

    padding:120px 0;
    background:linear-gradient(135deg,#F8FAFD,#EDF5FF);

}

.page-hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.page-hero h1{

    font-family:'Poppins',sans-serif;
    font-size:58px;
    line-height:1.15;
    color:var(--heading);
    margin:25px 0;

}

.page-hero h1 span{

    color:var(--primary);

}

.page-hero p{

    font-size:18px;
    color:#666;
    margin-bottom:40px;
    max-width:600px;

}

.page-hero .hero-image img{

    width:100%;

}

/*==================================================
COMPANY OVERVIEW
==================================================*/

.about-company{

    padding:120px 0;
    background:#fff;

}

.section-label{

    display:inline-block;
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
    margin-bottom:20px;

}

.about-company h2{

    font-family:'Poppins',sans-serif;
    font-size:42px;
    color:var(--heading);
    margin-bottom:30px;
    line-height:1.2;

}

.about-company p{

    margin-bottom:22px;
    color:#666;
    font-size:17px;

}

.about-company .about-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

/*==================================================
MISSION VISION VALUES
==================================================*/

.mission{

    padding:120px 0;
    background:#F8FAFC;

}

.mission-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.mission-card{

    background:#fff;
    padding:45px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid #E8ECF2;

}

.mission-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.mission-card i{

    width:90px;
    height:90px;
    background:#EDF5FF;
    color:var(--primary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 30px;
    font-size:34px;

}

.mission-card h3{

    margin-bottom:20px;
    font-size:28px;
    color:var(--heading);

}

.mission-card p{

    color:#666;

}

.mission-card ul{

    text-align:left;
    margin-top:20px;

}

.mission-card ul li{

    margin-bottom:12px;
    color:#555;

}

.mission-card ul li::before{

    content:"✓";
    color:var(--primary);
    font-weight:bold;
    margin-right:10px;

}

/*==================================================
WHY ABOUT
==================================================*/

.why-about{

    padding:120px 0;
    background:#fff;

}

/*==================================================
PROCESS
==================================================*/

.process{

    padding:120px 0;
    background:#F8FAFC;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;

}

.process-card{

    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    border:1px solid #E8ECF2;
    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.process-card span{

    display:inline-flex;
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;

}

.process-card h3{

    font-size:22px;
    color:var(--heading);

}

/*==================================================
RESPONSIVE ABOUT
==================================================*/

@media(max-width:992px){

.page-hero-grid,
.mission-grid{

    grid-template-columns:1fr;

}

.process-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.page-hero{

    padding:80px 0;

}

.page-hero h1{

    font-size:40px;

}

.about-company h2{

    font-size:34px;

}

.process-grid{

    grid-template-columns:1fr;

}

}

/*==================================================
SERVICES INTRO
==================================================*/

.services-intro{

    padding:120px 0;
    background:#fff;

}

.services-intro-content{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.services-intro p{

    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-top:25px;

}

/*==================================================
SERVICES GRID
==================================================*/

.services-grid-section{

    padding:120px 0;
    background:#F8FAFC;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;

}

.service-card{

    background:#fff;
    border-radius:20px;
    padding:40px 35px;
    border:1px solid #E8ECF2;
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.service-card::before{

    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:80px;
    height:80px;
    border-radius:18px;
    background:#EDF5FF;
    color:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin-bottom:30px;

}

.service-card h3{

    font-size:26px;
    margin-bottom:18px;
    color:var(--heading);

}

.service-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:30px;

}

.service-card a{

    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;

}

.service-card a i{

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(8px);

}

/*==================================================
TECH STACK
==================================================*/

.tech-stack{

    padding:120px 0;
    background:#fff;

}

.tech-grid{

    display:flex;
    flex-wrap:wrap;
    gap:18px;
    justify-content:center;
    margin-top:60px;

}

.tech-grid span{

    padding:15px 28px;
    background:#F5F8FC;
    border-radius:40px;
    border:1px solid #E6EBF1;
    transition:.3s;
    font-weight:600;

}

.tech-grid span:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-5px);

}

/*==================================================
INDUSTRIES
==================================================*/

.industries{

    padding:120px 0;
    background:#F8FAFC;

}

.industry-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;

}

.industry-grid div{

    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    font-weight:600;
    border:1px solid #E6EBF1;
    transition:.3s;

}

.industry-grid div:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-8px);

}

/*==================================================
FAQ
==================================================*/

.faq-section{

    padding:120px 0;
    background:#fff;

}

.faq-container{

    max-width:900px;
    margin:60px auto 0;

}

.faq-item{

    border:1px solid #E6EBF1;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:20px;

}

.faq-question{

    width:100%;
    background:#fff;
    border:none;
    padding:28px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;

}

.faq-answer{

    display:none;
    padding:0 28px 28px;
    color:#666;
    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}

.faq-item.active .fa-plus{

    transform:rotate(45deg);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

.industry-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

    grid-template-columns:1fr;

}

.industry-grid{

    grid-template-columns:1fr;

}

.service-card{

    padding:35px 28px;

}

.tech-grid{

    justify-content:flex-start;

}

}

/*==================================================
CONTACT SECTION
==================================================*/

.contact-section{

    padding:120px 0;
    background:#fff;

}

.contact-wrapper{

    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:start;
    margin-top:70px;

}

/*==================================================
CONTACT INFO
==================================================*/

.contact-info{

    position:sticky;
    top:120px;

}

.contact-info h3{

    font-size:32px;
    margin-bottom:15px;
    color:var(--heading);

}

.contact-info>p{

    color:#666;
    margin-bottom:35px;
    line-height:1.8;

}

.contact-card{

    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#F8FAFC;
    padding:25px;
    border-radius:18px;
    border:1px solid #E6EBF1;
    margin-bottom:20px;
    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-card i{

    width:60px;
    height:60px;
    background:var(--primary);
    color:#fff;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;

}

.contact-card h4{

    margin-bottom:8px;
    color:var(--heading);

}

.contact-card p{

    color:#666;
    line-height:1.7;

}

/*==================================================
CONTACT FORM
==================================================*/

.contact-form{

    background:#fff;
    padding:45px;
    border-radius:20px;
    border:1px solid #E6EBF1;
    box-shadow:0 20px 60px rgba(0,0,0,.05);

}

.form-row{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;
    padding:18px 20px;
    border:1px solid #D8E2EC;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
    font-family:inherit;
    background:#fff;

}

.contact-form textarea{

    resize:vertical;
    min-height:180px;
    margin:20px 0;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(0,123,255,.10);

}

.contact-form button{

    border:none;
    cursor:pointer;

}

/*==================================================
WHY CONTACT US
==================================================*/

.contact-benefits{

    padding:120px 0;
    background:#F8FAFC;

}

.benefits-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

.benefit-card{

    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    border:1px solid #E6EBF1;
    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.benefit-card i{

    width:80px;
    height:80px;
    border-radius:50%;
    background:#EDF5FF;
    color:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    font-size:32px;

}

.benefit-card h3{

    margin-bottom:15px;
    color:var(--heading);

}

.benefit-card p{

    color:#666;
    line-height:1.8;

}

/*==================================================
OFFICE HOURS
==================================================*/

.office-hours{

    padding:120px 0;
    background:#fff;

}

.hours-table{

    max-width:700px;
    margin:60px auto 0;
    background:#F8FAFC;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #E6EBF1;

}

.hours-table div{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    border-bottom:1px solid #E6EBF1;

}

.hours-table div:last-child{

    border-bottom:none;

}

.hours-table span{

    font-weight:600;
    color:var(--heading);

}

.hours-table strong{

    color:#666;
    font-weight:500;

}

/*==================================================
CONTACT PAGE CTA
==================================================*/

.contact-cta{

    padding:120px 0;
    background:linear-gradient(135deg,var(--primary),#004AAD);
    text-align:center;
    color:#fff;

}

.contact-cta h2{

    font-size:46px;
    color:#fff;
    margin-bottom:25px;

}

.contact-cta p{

    max-width:700px;
    margin:0 auto 40px;
    color:rgba(255,255,255,.85);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.contact-wrapper{

    grid-template-columns:1fr;
    gap:50px;

}

.contact-info{

    position:static;

}

.benefits-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.form-row{

    grid-template-columns:1fr;

}

.benefits-grid{

    grid-template-columns:1fr;

}

.contact-form{

    padding:30px;

}

.contact-card{

    padding:20px;

}

.hours-table div{

    flex-direction:column;
    gap:10px;
    text-align:center;

}

.contact-cta h2{

    font-size:34px;

}

.contact-section,
.contact-benefits,
.office-hours{

    padding:80px 0;

}

}

/*==================================================
PROJECTS INTRO
==================================================*/

.projects-intro{

    padding:120px 0;
    background:#fff;

}

.projects-intro-content{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.projects-intro-content p{

    font-size:18px;
    color:#666;
    line-height:1.9;
    margin-top:25px;

}

/*==================================================
FEATURED PROJECTS
==================================================*/

.featured-projects{

    padding:120px 0;
    background:#F8FAFC;

}

.projects-list{

    margin-top:70px;

}

.project-item{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:120px;

}

.project-item:last-child{

    margin-bottom:0;

}

.project-item.reverse .project-image{

    order:2;

}

.project-item.reverse .project-content{

    order:1;

}

.project-image{

    overflow:hidden;
    border-radius:22px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.project-image img{

    width:100%;
    display:block;
    transition:.5s;

}

.project-item:hover .project-image img{

    transform:scale(1.05);

}

.project-category{

    display:inline-block;
    padding:8px 18px;
    background:#EDF5FF;
    color:var(--primary);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;

}

.project-content h3{

    font-size:42px;
    margin-bottom:20px;
    color:var(--heading);

}

.project-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:30px;

}

.project-tech{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;

}

.project-tech span{

    padding:10px 18px;
    border-radius:30px;
    background:#F5F8FC;
    border:1px solid #E5EAF0;
    font-size:14px;
    font-weight:600;

}

.project-link{

    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:700;
    text-decoration:none;

}

.project-link i{

    transition:.3s;

}

.project-link:hover i{

    transform:translateX(8px);

}

/*==================================================
FUTURE PROJECT
==================================================*/

.future-project{

    background:linear-gradient(135deg,var(--primary),#004AAD);
    border-radius:25px;
    padding:90px 50px;
    display:block;
    text-align:center;
    color:#fff;

}

.future-content{

    max-width:700px;
    margin:auto;

}

.future-content i{

    font-size:70px;
    margin-bottom:30px;

}

.future-content h2{

    color:#fff;
    font-size:44px;
    margin-bottom:20px;

}

.future-content p{

    color:rgba(255,255,255,.85);
    margin-bottom:40px;
    font-size:18px;

}

/*==================================================
CAPABILITIES
==================================================*/

.project-capabilities{

    padding:120px 0;
    background:#fff;

}

.capabilities-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;

}

.capability-card{

    background:#F8FAFC;
    border-radius:20px;
    padding:40px;
    text-align:center;
    border:1px solid #E6EBF1;
    transition:.35s;

}

.capability-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.capability-card i{

    width:80px;
    height:80px;
    background:#EDF5FF;
    color:var(--primary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin:0 auto 25px;

}

.capability-card h3{

    margin-bottom:18px;

}

.capability-card p{

    color:#666;
    line-height:1.8;

}

/*==================================================
PROJECT PROCESS
==================================================*/

.project-process{

    padding:120px 0;
    background:#F8FAFC;

}

/* Uses existing .process-grid and .process-card styles */

/*==================================================
TECH STACK
==================================================*/

.project-tech-stack{

    padding:120px 0;
    background:#fff;

}

/* Uses existing .tech-grid styles */

/*==================================================
CLIENT SUCCESS
==================================================*/

.client-success{

    padding:120px 0;
    background:#F8FAFC;

}

.success-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;

}

.success-card{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    border:1px solid #E6EBF1;
    text-align:center;
    transition:.35s;

}

.success-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.success-card i{

    font-size:45px;
    color:var(--primary);
    margin-bottom:25px;

}

.success-card h3{

    margin-bottom:15px;

}

.success-card p{

    color:#666;
    line-height:1.8;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.project-item{

    gap:40px;

}

.capabilities-grid{

    grid-template-columns:repeat(2,1fr);

}

.success-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.project-item,
.project-item.reverse{

    grid-template-columns:1fr;

}

.project-item.reverse .project-image,
.project-item.reverse .project-content{

    order:initial;

}

.project-content h3{

    font-size:34px;

}

.capabilities-grid,
.success-grid{

    grid-template-columns:1fr;

}

.future-project{

    padding:70px 30px;

}

.future-content h2{

    font-size:34px;

}

.projects-intro,
.featured-projects,
.project-capabilities,
.project-process,
.project-tech-stack,
.client-success{

    padding:80px 0;

}

}

/*==================================================
PRIVACY POLICY
==================================================*/

.policy-content{

    padding:120px 0;
    background:#fff;

}

.policy-wrapper{

    max-width:950px;
    margin:0 auto;

}

.policy-wrapper h2{

    font-size:34px;
    color:var(--heading);
    margin:60px 0 20px;
    line-height:1.3;
    position:relative;
    padding-left:18px;

}

.policy-wrapper h2::before{

    content:'';
    position:absolute;
    left:0;
    top:8px;
    width:5px;
    height:36px;
    background:var(--primary);
    border-radius:10px;

}

.policy-wrapper p{

    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;

}

.policy-wrapper strong{

    color:var(--heading);

}

.policy-wrapper ul{

    margin:25px 0 35px 30px;

}

.policy-wrapper ul li{

    color:#666;
    margin-bottom:14px;
    line-height:1.8;
    padding-left:8px;

}

.policy-wrapper a{

    color:var(--primary);
    text-decoration:none;
    font-weight:600;

}

.policy-wrapper a:hover{

    text-decoration:underline;

}

/*==================================================
LEGAL INFO CARD
==================================================*/

.policy-wrapper .contact-card{

    margin-top:50px;
    background:#F8FAFC;
    border:1px solid #E6EBF1;
    border-radius:20px;
    padding:35px;
    display:flex;
    gap:25px;
    align-items:flex-start;
    transition:.35s;

}

.policy-wrapper .contact-card:hover{

    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.policy-wrapper .contact-card i{

    width:70px;
    height:70px;
    background:var(--primary);
    color:#fff;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    flex-shrink:0;

}

.policy-wrapper .contact-card h4{

    margin-bottom:18px;
    font-size:24px;
    color:var(--heading);

}

.policy-wrapper .contact-card p{

    margin-bottom:18px;

}

.policy-wrapper .contact-card p:last-child{

    margin-bottom:0;

}

/*==================================================
HIGHLIGHT BOX
==================================================*/

.policy-note{

    margin:40px 0;
    padding:25px 30px;
    background:#EDF5FF;
    border-left:5px solid var(--primary);
    border-radius:12px;

}

.policy-note p{

    margin:0;
    color:#555;
    font-weight:500;

}

/*==================================================
TABLE STYLE (Future Use)
==================================================*/

.policy-table{

    width:100%;
    border-collapse:collapse;
    margin:35px 0;

}

.policy-table th{

    background:var(--primary);
    color:#fff;
    text-align:left;
    padding:16px;

}

.policy-table td{

    padding:16px;
    border:1px solid #E6EBF1;

}

.policy-table tr:nth-child(even){

    background:#F8FAFC;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:768px){

.policy-content{

    padding:80px 0;

}

.policy-wrapper{

    max-width:100%;

}

.policy-wrapper h2{

    font-size:28px;
    margin:45px 0 18px;

}

.policy-wrapper h2::before{

    height:30px;

}

.policy-wrapper p{

    font-size:16px;

}

.policy-wrapper .contact-card{

    flex-direction:column;
    text-align:center;

}

.policy-wrapper .contact-card i{

    margin:0 auto;

}

.policy-wrapper ul{

    margin-left:20px;

}

}

/*==================================================
SITEMAP
==================================================*/

.policy-wrapper ul{

    list-style:none;
    margin:25px 0 40px;
    padding:0;

}

.policy-wrapper ul li{

    border-bottom:1px solid #E8EDF3;
    padding:16px 0;

}

.policy-wrapper ul li:last-child{

    border-bottom:none;

}

.policy-wrapper ul li a{

    display:flex;
    justify-content:space-between;
    align-items:center;
    color:var(--heading);
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.policy-wrapper ul li a::after{

    content:'→';
    color:var(--primary);
    transition:.3s;

}

.policy-wrapper ul li a:hover{

    color:var(--primary);
    padding-left:10px;

}

.policy-wrapper ul li a:hover::after{

    transform:translateX(6px);

}

/*==================================================
CAREERS
==================================================*/

.career-intro,
.why-work,
.open-positions,
.career-process,
.resume-section{

    padding:120px 0;

}

.career-intro{

    background:#fff;

}

.why-work{

    background:#F8FAFC;

}

.open-positions{

    background:#fff;

}

.career-process{

    background:#F8FAFC;

}

.resume-section{

    background:#fff;

}

.career-card{

    max-width:800px;
    margin:60px auto 0;
    text-align:center;
    padding:50px;
    background:#F8FAFC;
    border:1px solid #E6EBF1;
    border-radius:20px;

}

.career-card h3{

    margin-bottom:20px;

}

.career-card p{

    color:#666;
    line-height:1.8;

}

@media(max-width:768px){

.career-intro,
.why-work,
.open-positions,
.career-process,
.resume-section{

    padding:80px 0;

}

.career-card{

    padding:35px 25px;

}

}

.job-type{

    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;

}

.career-card{

    text-align:left;

}

.career-card h4{

    margin:30px 0 15px;
    color:var(--heading);

}

.career-card ul{

    margin:0 0 25px 20px;

}

.career-card ul li{

    margin-bottom:12px;
    color:#666;
    line-height:1.8;

}

.career-card .btn{

    margin-top:20px;

}

/*=========================================
FAQ PAGE
==========================================*/

.faq-intro{
    padding:90px 0 30px;
}

.faq-section{
    padding:40px 0;
}

.faq-section:last-of-type{
    padding-bottom:90px;
}

.faq-section .section-title{
    text-align:center;
    margin-bottom:50px;
}

.faq-container{
    max-width:950px;
    margin:0 auto;
}

.faq-item{
    background:#fff;
    border:1px solid #e8eef5;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:20px;
    transition:all .35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.faq-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:1.05rem;
    font-weight:600;
    color:var(--secondary);
    cursor:pointer;
    text-align:left;
    transition:.3s;
}

.faq-question:hover{
    color:var(--primary);
}

.faq-question i{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eef5ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.9rem;
    transition:.35s ease;
    flex-shrink:0;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fafcff;
}

.faq-answer p{
    padding:0 30px 28px;
    margin:0;
    color:#5c6470;
    line-height:1.8;
    font-size:1rem;
}

.faq-item.active .faq-answer{
    max-height:500px;
}

.faq-item.active .faq-question{
    color:var(--primary);
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    background:var(--primary);
    color:#fff;
}

/*=========================================
FAQ CTA
==========================================*/

.cta-section{
    padding:90px 0;
}

.cta-content{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    background:linear-gradient(135deg,#0b63ce,#08479c);
    color:#fff;
    padding:70px 50px;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.cta-tag{
    display:inline-block;
    margin-bottom:15px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.cta-content h2{
    color:#fff;
    margin-bottom:20px;
    font-size:2.4rem;
}

.cta-content p{
    max-width:700px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.9);
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-buttons .btn-outline{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.4);
}

.cta-buttons .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/*=========================================
RESPONSIVE
==========================================*/

@media (max-width:768px){

    .faq-question{
        padding:20px;
        font-size:1rem;
        gap:20px;
    }

    .faq-answer p{
        padding:0 20px 24px;
        font-size:.95rem;
    }

    .faq-question i{
        width:34px;
        height:34px;
        font-size:.8rem;
    }

    .cta-content{
        padding:50px 25px;
    }

    .cta-content h2{
        font-size:2rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-buttons .btn{
        width:100%;
        max-width:260px;
    }

}

/*=========================================
404 PAGE
==========================================*/

.error-page{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:100px 0;
}

.error-content{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.error-code{
    display:block;
    font-size:8rem;
    font-weight:800;
    line-height:1;
    color:var(--primary);
    margin-bottom:20px;
    letter-spacing:4px;
}

.error-content h1{
    font-size:3rem;
    margin-bottom:20px;
    color:var(--secondary);
}

.error-content p{
    max-width:650px;
    margin:0 auto 40px;
    color:#666;
    line-height:1.8;
    font-size:1.1rem;
}

.error-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.error-buttons .btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
    background:transparent;
}

.error-buttons .btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

.quick-links{
    background:#fff;
    border:1px solid #e8eef5;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.quick-links h3{
    margin-bottom:25px;
    color:var(--secondary);
}

.quick-links ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.quick-links ul li a{
    color:var(--primary);
    font-weight:600;
    transition:.3s;
}

.quick-links ul li a:hover{
    color:var(--secondary);
}

/*=========================================
RESPONSIVE
==========================================*/

@media (max-width:768px){

    .error-code{
        font-size:5rem;
    }

    .error-content h1{
        font-size:2.2rem;
    }

    .error-content p{
        font-size:1rem;
    }

    .error-buttons{
        flex-direction:column;
        align-items:center;
    }

    .error-buttons .btn{
        width:100%;
        max-width:250px;
    }

    .quick-links ul{
        flex-direction:column;
        gap:15px;
    }

}

/*=========================================
GOOGLE BUSINESS CARD
==========================================*/

.google-business-card{
    margin-top:30px;
    background:#fff;
    border:1px solid #e8eef5;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.google-business-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.google-business-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#4285F4,#34A853);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.google-business-icon i{
    font-size:2rem;
    color:#fff;
}

.google-business-card h3{
    font-size:1.5rem;
    color:var(--secondary);
    margin-bottom:12px;
}

.google-rating{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.google-rating i{
    color:#fbbc05;
    font-size:1rem;
}

.google-rating span{
    color:#666;
    font-size:.95rem;
}

.google-business-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.google-business-card .btn{
    width:100%;
    text-align:center;
}

.google-business-card .btn i{
    margin-left:8px;
}

/*=========================================
RESPONSIVE
==========================================*/

@media (max-width:768px){

    .google-business-card{
        padding:25px;
    }

    .google-business-icon{
        width:60px;
        height:60px;
    }

    .google-business-icon i{
        font-size:1.6rem;
    }

    .google-business-card h3{
        font-size:1.3rem;
    }

}

.google-business-card{
    text-align:center;
}

.google-business-icon{
    margin:0 auto 25px;
}

.google-rating{
    justify-content:center;
}

.google-business-card .btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:auto;
    min-width:220px;
}