/* =====================================================
   JAI ENTERPRISES
   Premium Business Portfolio
   Author : ChatGPT
===================================================== */

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

/* =========================
   ROOT VARIABLES
========================= */

:root{

    --primary:#8B5E3C;
    --secondary:#2F5D62;
    --accent:#C58B45;

    --bg:#F8F7F2;
    --white:#ffffff;

    --text:#263238;
    --light-text:#6B7280;

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

    --radius:20px;

    --transition:.35s ease;

}

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

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Outfit',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

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

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

section{

    padding:100px 0;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

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

.header{

    position:fixed;

    top:18px;

    left:0;

    width:100%;

    z-index:999;

    padding:0;

    transition:.4s ease;

}

.navbar{

    width:92%;

    max-width:1350px;

    margin:18px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 28px;

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.45);

    border-radius:22px;

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

    transition:.35s;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:22px;

    font-weight:700;

    color:var(--text);

}

.logo img{

    width:48px;

    transition:.35s;

}

.logo:hover img{

    transform:rotate(-8deg) scale(1.08);

}

/* MENU */

.nav-links{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-links a{

    color:var(--text);

    font-weight:600;

    font-size:16px;

    position:relative;

    transition:.35s;

    padding:8px 0;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    transform:translateX(-50%);

    width:0;

    height:3px;

    border-radius:20px;

    background:linear-gradient(90deg,#8B5E3C,#C58B45);

    transition:.35s;

}

.nav-links a:hover{

    color:#8B5E3C;

}

.nav-links a:hover::after{

    width:100%;

}

.contact-btn{

    background:linear-gradient(135deg,#8B5E3C,#C58B45);

    color:#fff;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:
    0 12px 30px rgba(139,94,60,.25);

}

.contact-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 40px rgba(139,94,60,.35);

}
/* HERO */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    padding-top:140px;

    background:
    radial-gradient(circle at top right,
    rgba(197,139,69,.12),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(139,94,60,.08),
    transparent 35%),

    #F8F7F2;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#C58B45;

    opacity:.08;

    filter:blur(120px);

    top:-180px;

    right:-120px;

    border-radius:50%;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#8B5E3C;

    opacity:.05;

    filter:blur(100px);

    bottom:-150px;

    left:-120px;

    border-radius:50%;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:980px;

    margin:auto;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#EFE5D6;

    color:#8B5E3C;

    padding:14px 28px;

    border-radius:60px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:30px;

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

}

.hero h1{

    font-size:84px;

    line-height:1.05;

    color:#24303A;

    margin-bottom:28px;

    font-weight:800;

}


.hero-description{

    max-width:760px;

    margin:0 auto 45px;

    font-size:21px;

    line-height:1.9;

    color:#666;

}

.hero-services{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:16px;

    margin-bottom:50px;

}

.hero-services span{

    padding:14px 24px;

    background:#fff;

    border-radius:50px;

    box-shadow:0 12px 25px rgba(0,0,0,.06);

    transition:.35s;

    font-weight:600;

}

.hero-services span:hover{

    transform:translateY(-6px);

    background:#8B5E3C;

    color:#fff;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    margin-bottom:70px;

}

.primary-btn{

    background:linear-gradient(135deg,#8B5E3C,#C58B45);

    color:#fff;

    padding:18px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 18px 35px rgba(139,94,60,.25);

}

.primary-btn:hover{

    transform:translateY(-5px);

}

.secondary-btn{

    padding:18px 38px;

    border-radius:60px;

    border:2px solid #8B5E3C;

    color:#8B5E3C;

    font-weight:700;

    transition:.35s;

}

.secondary-btn:hover{

    background:#8B5E3C;

    color:#fff;

}

.hero-stats{

    display:flex;

    justify-content:center;

    gap:90px;

}

.stat-box{

    position:relative;

}

.stat-box h2{

    font-size:48px;

    color:#8B5E3C;

}

.stat-box p{

    margin-top:10px;

    color:#666;

    font-size:17px;

}

/*=====================================
ABOUT SECTION
======================================*/

/*=========================================
ABOUT SECTION
=========================================*/

.about{

    padding:120px 0;

    background:#FCFBF8;

    position:relative;

    overflow:hidden;

}

.about::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(197,139,69,.10);

    filter:blur(120px);

    top:-180px;

    right:-120px;

    border-radius:50%;

}

.about::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(139,94,60,.06);

    filter:blur(90px);

    bottom:-120px;

    left:-100px;

    border-radius:50%;

}

/*=========================================
HEADING
=========================================*/

.about .section-heading{

    text-align:center;

    margin-bottom:70px;

}

.about .section-heading h2{

    font-size:56px;

    color:#1f2937;

    margin:15px 0;

    line-height:1.2;

}

.about .section-heading h2 span{

    color:#8B5E3C;

}

.about .section-heading p{

    width:700px;

    max-width:95%;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

/*=========================================
WRAPPER
=========================================*/

.about-wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

/*=========================================
IMAGE
=========================================*/

.image-box{

    position:relative;

    border-radius:35px;

    overflow:hidden;

    box-shadow:

    0 25px 60px rgba(0,0,0,.12);

}

.image-box img{

    width:100%;

    display:block;

    transition:.5s;

}

.image-box:hover img{

    transform:scale(1.05);

}

.image-box::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    to top,

    rgba(0,0,0,.20),

    transparent);

}

.ceo-badge{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#fff;

    padding:14px 22px;

    border-radius:18px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.12);

    z-index:5;

}

.ceo-badge span{

    display:block;

    font-size:13px;

    color:#8B5E3C;

    font-weight:700;

}

.ceo-badge h4{

    margin-top:5px;

    font-size:17px;

}

/*=========================================
CONTENT
=========================================*/

.about-role{

    display:inline-block;

    padding:10px 22px;

    background:#F3E8DB;

    border-radius:50px;

    color:#8B5E3C;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h3{

    font-size:46px;

    color:#1f2937;

    margin-bottom:20px;

}

.about-content p{

    color:#555;

    line-height:2;

    font-size:17px;

}

/*=========================================
SOCIAL
=========================================*/

.about-social{

    display:flex;

    gap:15px;

    margin:35px 0;

}

.about-social a{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    border-radius:50%;

    color:#8B5E3C;

    font-size:18px;

    transition:.35s;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

}

.about-social a:hover{

    background:#8B5E3C;

    color:#fff;

    transform:translateY(-6px);

}

/*=========================================
TIMELINE
=========================================*/

.timeline{

    margin-top:45px;

    border-left:3px solid #C58B45;

    padding-left:35px;

}

.timeline h4{

    margin-bottom:30px;

    color:#8B5E3C;

    font-size:24px;

}

.timeline-item{

    position:relative;

    margin-bottom:35px;

}

.timeline-dot{

    position:absolute;

    left:-45px;

    top:6px;

    width:16px;

    height:16px;

    border-radius:50%;

    background:#C58B45;

}

.timeline-dot.active{

    background:#8B5E3C;

    transform:scale(1.3);

}

.timeline-content span{

    font-size:13px;

    color:#999;

}

.timeline-content h5{

    margin:8px 0;

    font-size:21px;

    color:#222;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

}

/*=========================================
BOTTOM CARDS
=========================================*/

.about-cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:90px;

}

.about-card{

    background:#fff;

    padding:35px;

    border-radius:28px;

    transition:.4s;

    box-shadow:

    0 15px 35px rgba(0,0,0,.06);

}

.about-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 30px 60px rgba(139,94,60,.18);

}

.about-card i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:#8B5E3C;

    color:#fff;

    font-size:24px;

    margin-bottom:22px;

}

.about-card h4{

    margin-bottom:15px;

    font-size:24px;

    color:#222;

}

.about-card p{

    color:#666;

    line-height:1.9;

}

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

@media(max-width:992px){

.about-wrapper{

grid-template-columns:1fr;

}

.about-cards{

grid-template-columns:repeat(2,1fr);

}

.about .section-heading h2{

font-size:42px;

}

}

@media(max-width:768px){

.about{

padding:80px 0;

}

.about-cards{

grid-template-columns:1fr;

}

.about-content h3{

font-size:34px;

}

.timeline{

padding-left:25px;

}

.timeline-dot{

left:-35px;

}

}

/*=====================================
SOCIAL
======================================*/

.social-links{

    display:flex;

    gap:18px;

    margin-top:35px;

    margin-bottom:45px;

}

.social-links a{

    width:55px;

    height:55px;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#263238;

    text-decoration:none;

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

    transition:.35s ease;

    font-size:20px;

}

.social-links a:hover{

    transform:translateY(-8px);

    background:#8B5E3C;

    color:#fff;

}

/*=====================================
DETAIL CARDS
======================================*/

.about-details{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.detail-card{

    background:#fff;

    padding:30px;

    border-radius:24px;

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

    transition:.35s ease;

}

.detail-card:hover{

    transform:translateY(-8px);

}

.detail-card i{

    font-size:32px;

    color:#8B5E3C;

    margin-bottom:20px;

}

.detail-card h4{

    font-size:22px;

    margin-bottom:12px;

}

.detail-card p{

    font-size:15px;

    color:#666;

    line-height:1.7;

}

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

@media(max-width:991px){

.about-wrapper{

grid-template-columns:1fr;

}

.about-image{

max-width:420px;

margin:auto;

}

.about-content{

text-align:center;

}

.social-links{

justify-content:center;

}

.about-details{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.about{

padding:80px 0;

}

.about-content h2{

font-size:38px;

}

.about-content h3{

font-size:24px;

}

.about-content p{

font-size:16px;

}

}

/*==================================================
OUR BUSINESSES
==================================================*/

.businesses{
    padding:120px 0;
    background:#F8F7F2;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-heading h2{
    font-size:52px;
    color:#24303A;
    margin:15px 0;
}

.section-heading p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/*====================================*/

.business-box{

    display:grid;
    grid-template-columns:420px 1fr;

    gap:60px;

    background:#fff;

    border-radius:30px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*====================================*/

.business-images{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.business-images img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

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

}

.business-images img:hover{

    transform:scale(1.04);

}

/*====================================*/

.business-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.business-badge{

    display:inline-block;

    background:#EFE5D6;

    color:#8B5E3C;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.business-info h2{

    font-size:46px;

    color:#24303A;

    margin-bottom:10px;

}

.business-info h4{

    color:#8B5E3C;

    font-size:22px;

    margin-bottom:25px;

}

.business-info p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

/*====================================*/

.business-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    background:#F9F9F9;

    padding:18px;

    border-radius:18px;

}

.feature i{

    width:50px;

    height:50px;

    background:#8B5E3C;

    color:#fff;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

}

.feature span{

    font-weight:500;

}

/*====================================*/

.business-stats{

    display:flex;

    justify-content:space-between;

    text-align:center;

    border-top:1px solid #EAEAEA;

    padding-top:35px;

}

.business-stats h3{

    font-size:34px;

    color:#8B5E3C;

}

.business-stats p{

    margin-top:8px;

    font-size:15px;

    color:#777;

}

/*====================================*/

@media(max-width:991px){

.business-box{

grid-template-columns:1fr;

}

.business-features{

grid-template-columns:1fr;

}

.business-stats{

flex-wrap:wrap;

gap:30px;

}

}

@media(max-width:768px){

.businesses{

padding:80px 0;

}

.section-heading h2{

font-size:38px;

}

.business-info h2{

font-size:34px;

}

.business-info h4{

font-size:18px;

}

.business-images img{

height:220px;

}

.business-box{

padding:20px;

}

}
.business-slider{

    position:relative;

    width:100%;

    height:520px;

    overflow:hidden;

    border-radius:25px;

}

.slides{

    width:100%;
    height:100%;
    position:relative;
    overflow:hidden;

}

.slide{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;
    transition:.6s ease;

}

.slide.active{

    opacity:1;
    z-index:2;

}

.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

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

    color:white;

    font-size:24px;

    cursor:pointer;

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

.prev:hover,
.next:hover{

    background:#8B5E3C;

}

/*==========================================
BUSINESS FULL LAYOUT
==========================================*/

.business-full{

    display:flex;

    flex-direction:column;

}

.full-slider{

    width:100%;

    height:420px;

    margin-bottom:40px;

    border-radius:25px;

    overflow:hidden;

}

.full-slider .slide{

    width:100%;

    height:100%;

    object-fit:contain;

    background:#f7f7f7;

}

.full-info{

    padding:0 20px 20px;

}

.full-info h2{

    text-align:center;

    margin-top:15px;

}

.full-info h4{

    text-align:center;

    margin-bottom:25px;

}

.full-info p{

    text-align:center;

    max-width:900px;

    margin:0 auto 40px;

}

.full-info .business-features{

    margin-top:20px;

}

@media(max-width:768px){

.full-slider{

height:250px;

}


}

/*==========================================
DIGITAL SOLUTIONS
==========================================*/

.services{

    padding:120px 0;

    background:#F8F7F4;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-size:48px;

    color:var(--dark);

    margin:20px 0;

}

.section-heading p{

    max-width:750px;

    margin:auto;

    font-size:18px;

    color:var(--light-text);

    line-height:1.8;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

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

    transition:.4s;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#8B5E3C,#C89B6D);

    transform:scaleX(0);

    transition:.4s;


}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-12px);

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

}
      

.service-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:#8B5E3C;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

    transition:.4s;

}

.service-card:hover .service-icon{

    transform:rotate(-10deg) scale(1.1);

    background:#C89B6D;

}

.service-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:#222;

}

.service-card p{

    font-size:16px;

    color:#666;

    line-height:1.8;

}

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

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services{

padding:80px 0;

}

.section-heading h2{

font-size:36px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:30px;

}

}

/* ========================================= */
/* CONTACT SECTION */
/* ========================================= */

.contact{
    padding:120px 0;
    background:#f8f6f2;
    position:relative;
    overflow:hidden;
}

.contact::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(155,107,67,.08);
    border-radius:50%;
    top:-180px;
    right:-180px;
    filter:blur(10px);
}

.contact::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(155,107,67,.05);
    border-radius:50%;
    bottom:-150px;
    left:-120px;
}

.contact .container{
    position:relative;
    z-index:2;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:45px;
    margin-top:70px;
}

/* ========================================= */
/* LEFT SIDE */
/* ========================================= */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    background:#fff;
    border-radius:22px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:20px;
    transition:.35s;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(155,107,67,.18);
}

.contact-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,#8B5E3C,#B9804F);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.contact-card h3{
    font-size:19px;
    color:#222;
    margin-bottom:6px;
}

.contact-card p{
    color:#666;
    line-height:1.7;
}

.contact-box{
    margin-top:10px;
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.contact-box h3{
    margin-bottom:22px;
    color:#222;
}

.contact-box ul{
    list-style:none;
    padding:0;
}

.contact-box li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    color:#555;
    font-weight:500;
}

.contact-box i{
    color:#9B6B43;
}

/* ========================================= */
/* RIGHT SIDE */
/* ========================================= */

.contact-form-box{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 20px 45px rgba(0,0,0,.06);
}

.input-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:25px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:10px;
}

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

    width:100%;
    padding:17px 20px;
    border:none;
    outline:none;

    background:#fafafa;

    border:2px solid transparent;

    border-radius:18px;

    font-size:15px;

    transition:.35s;
}

.input-group textarea{
    resize:none;
}

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

    background:#fff;

    border-color:#9B6B43;

    box-shadow:0 0 0 5px rgba(155,107,67,.12);

}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.contact-submit{

    margin-top:30px;

    border:none;

    cursor:pointer;

    padding:18px 35px;

    border-radius:60px;

    background:linear-gradient(135deg,#8B5E3C,#B9804F);

    color:#fff;

    font-size:17px;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:12px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(155,107,67,.35);

}

.contact-submit:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(155,107,67,.45);

}

.contact-submit i{

    transition:.35s;

}

.contact-submit:hover i{

    transform:translateX(5px);

}

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

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-form-box{

padding:35px;

}

}

@media(max-width:768px){

.input-row{

grid-template-columns:1fr;

}

.contact{

padding:80px 0;

}

.contact-form-box{

padding:25px;

}

.contact-card{

padding:18px;

}

.contact-icon{

width:58px;
height:58px;

font-size:20px;

}

.contact-submit{

width:100%;
justify-content:center;

}

}

/*==========================================
HERO TRUST STRIP
==========================================*/

.hero-trust{

    margin-top:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:16px 24px;

    border-radius:50px;

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

    transition:.35s;

    border:1px solid rgba(139,94,60,.08);

}

.trust-item i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#8B5E3C;

    color:#fff;

    font-size:16px;

}

.trust-item span{

    font-weight:600;

    color:#263238;

    font-size:15px;

}

.trust-item:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(139,94,60,.18);

}

.trust-item:hover i{

    background:#C58B45;

}

@media(max-width:768px){

.hero-trust{

margin-top:45px;

}

.trust-item{

width:100%;

justify-content:center;

}

}

.business-founder{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin:20px auto;

    width:fit-content;

    padding:12px 22px;

    background:#F8F3EC;

    border:1px solid #E7D6C1;

    border-radius:50px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.contact-card{

    text-decoration:none;

    color:inherit;

}

.contact-card{

    text-decoration:none;

    color:inherit;

}

/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width:768px){

.header{
    top:10px;
}

.navbar{

    width:98%;
    margin:10px auto;

    padding:12px 14px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-radius:18px;

}

.logo{

    gap:8px;
    font-size:15px;

}

.logo img{

    width:34px;

}

.nav-links{

    gap:12px;

}

.nav-links a{

    font-size:11px;
    font-weight:600;

}

.contact-btn{

    padding:8px 12px;
    font-size:11px;

}

}

/* ===========================
   MOBILE NAVBAR
=========================== */

.hamburger{
    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#222;
    border-radius:20px;
    transition:.3s;
}

.mobile-menu{
    position:fixed;
    top:80px;
    right:-100%;
    width:260px;
    height:100vh;
    background:#fff;
    display:flex;
    flex-direction:column;
    padding:40px 25px;
    gap:25px;
    transition:.4s;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
    z-index:999;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .contact-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .logo span{
        font-size:20px;
    }

}

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

@media (max-width:768px){

    .header{
        top:10px;
    }

   

    .logo{

        gap:10px;

    }

    .logo img{

        width:38px;

    }

    .logo span{

        font-size:18px;
        line-height:1.2;

    }

    .nav-links{

        display:none;

    }

    .contact-btn{

        display:none;

    }

    .hamburger{

        display:flex;

    }

}

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

@media (max-width:768px){

    .hero{

        min-height:auto;
        padding:130px 20px 60px;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-badge{

        font-size:12px;
        padding:10px 18px;
        margin-bottom:20px;

    }

    .hero h1{

        font-size:48px;
        line-height:1.15;
        margin-bottom:20px;

    }

    .hero-description{

        font-size:17px;
        line-height:1.7;
        margin-bottom:35px;

    }

    .hero-services{

        gap:12px;

    }

    .hero-services span{

        font-size:14px;
        padding:10px 16px;

    }

    .hero-buttons{

        flex-direction:column;
        align-items:center;
        gap:16px;
        margin-bottom:40px;

    }

}.website-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:22px;
    padding:11px 18px;
    border-radius:50px;

    background:#F3E8DB;
    color:#8B5E3C;

    font-size:14px;
    font-weight:600;

    text-decoration:none;
    transition:.35s ease;
}

.website-link i{
    font-size:13px;
    transition:.35s ease;
}

.website-link:hover{
    background:#8B5E3C;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(139,94,60,.20);
}

.website-link:hover i{
    transform:translate(2px,-2px);
}