/*
Theme Name: Unified Market Research
Author: Sakshi Chavan
Version: 1.0
Description: Custom WordPress Theme for Unified Market Research
*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"IBM Plex Sans", Arial, Helvetica, sans-serif;
    background:#f7f9fc;
    color:#1f2937;
    line-height:1.6;
    overflow-x:hidden;
}

/*==================================================
Hero Section
==================================================*/

.hero{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(135deg,#ffffff,#eef5ff);
}

.hero h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#666;
    margin-bottom:40px;
}

.hero .btn{
    display:inline-block;
    padding:16px 36px;
    background:#0056ff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.hero .btn:hover{
    background:#003fd6;
}