/* 
    Premium Redesign for Trust Kashmir
    Color Palette: Deep Green, Gold, Crisp White, Soft Gray
    Typography: Outfit (Headings), Inter (Body)
*/

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

:root {
    --primary-color: #0f4c3a; /* Deep, rich green */
    --primary-light: #1b6d54; 
    --secondary-color: #d4af37; /* Gold accent */
    --secondary-hover: #f1c430;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(15, 76, 58, 0.15);
    
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Base Components */
.btn.hero-btn, .btn.header-btn {
    background: var(--secondary-color);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn.hero-btn:hover, .btn.header-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: #fff;
}

/* Glassmorphism Header */
.header-area .main-header .header-bottom {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header-bottom.header-sticky {
    box-shadow: var(--shadow-soft);
}

.main-menu ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: capitalize;
    font-size: 16px;
    transition: color 0.3s;
}

.main-menu ul li a:hover {
    color: var(--secondary-color);
}

/* Header Top */
.header-top {
    background: var(--primary-color) !important;
    color: rgba(255,255,255,0.9);
}
.header-info-left ul li, .header-social ul li a {
    color: rgba(255,255,255,0.9) !important;
}

/* Hero Section Enhancement */
.slider-area {
    position: relative;
}

.single-slider {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.single-slider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 58, 0.9) 0%, rgba(15, 76, 58, 0.6) 100%);
    z-index: -1;
}

.hero__caption h1 {
    font-size: 65px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero__caption P {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 600px;
    line-height: 1.8;
}

/* Service Cards */
.single-cat {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.single-cat::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.single-cat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.single-cat:hover::before {
    transform: scaleX(1);
}

.single-cat .cat-icon span {
    color: var(--primary-color);
    font-size: 45px;
    margin-bottom: 20px;
    display: inline-block;
}

.single-cat .cat-cap h5 a {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
}

.single-cat .cat-cap p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Section Titles */
.section-tittle span {
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-tittle h2 {
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1.3;
}

/* Case Studies */
.single-cases {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

.cases-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-cases:hover .cases-img img {
    transform: scale(1.05);
}

.cases-caption {
    padding: 30px;
}

.cases-caption h3 a {
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    transition: color 0.3s;
}

.cases-caption h3 a:hover {
    color: var(--secondary-color);
}

/* Footer modern enhancement */
.footer-wrapper {
    background: var(--primary-color) !important;
    color: #fff;
}

.footer-tittle h4 {
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
}

.footer-tittle ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-tittle ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-copy-right p {
    color: rgba(255,255,255,0.5);
}

/* Smooth gradients and background accents */
.about-low-area {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.wantToWork-area {
    position: relative;
}

.wants-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%) !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 76, 58, 0.2);
}

.wantToWork-caption h2 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

/* Custom Chatbot Toggle */
.chat-toggle {
    background-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(15, 76, 58, 0.4);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}
.chat-header {
    background-color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}
.chat-input button {
    background-color: var(--secondary-color);
    font-weight: 600;
}
