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

body, p, a, span, li, input, textarea, button {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .headline h2, .headline h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

/* Global Modernizing */
.btn, .btn2, button, input[type="submit"] {
    border-radius: 8px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover, .btn2:hover, button:hover, input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Cards & Items */
.feature-item, .services-item, .team-item, .blog-item, .choose-item, .testimonial-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: none !important;
    margin-bottom: 30px;
}

.feature-item:hover, .services-item:hover, .team-item:hover, .blog-item:hover, .choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Specific Adjustments */
.services-photo, .blog-image, .team-photo img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: all 0.5s ease;
}

.services-item:hover .services-photo, .blog-item:hover .blog-image {
    transform: scale(1.05);
}

.image-effect {
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: block;
}

.services-text, .blog-text, .team-text {
    padding: 25px !important;
    background: #fff;
    position: relative;
    z-index: 1;
}

/* Header & Menu */
.header-area {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-area {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: #fff;
}

ul.nav-menu li a {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 25px 15px !important;
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    height: auto;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: inherit;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05) !important;
}

/* Slider */
.slider-text h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.slider-text p {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Progress Bars */
.progress {
    border-radius: 10px;
    height: 10px;
    background-color: #f0f0f0;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.progress-bar-custom {
    border-radius: 10px;
}

/* Testimonials */
.testimonial-photo img {
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-item {
    border-radius: 8px !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-header button.faq-button {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 8px;
}

/* Portfolio / Gallery */
.portfolio-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.portfolio-photo {
    transition: all 0.5s ease;
}

.portfolio-group:hover .portfolio-photo {
    transform: scale(1.1);
}

.portfolio-menu ul li {
    border-radius: 30px;
    padding: 8px 25px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    margin: 0 5px 10px;
    transition: all 0.3s ease;
}

/* Footer */
.footer-area {
    background-color: #1a1a1a;
    color: #f1f1f1;
}

.footer-item h3 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    color: #fff;
}

.footer-item ul li a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-item ul li a:hover {
    padding-left: 5px;
}

/* Section Headlines */
.headline h2 {
    font-size: 36px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.headline h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
}

.headline.hl-left h2::after {
    left: 0;
    transform: none;
}

.headline h3 {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Fix Testimonial Colors on White Background */
.testimonial-item {
    color: #313131 !important;
}

.testimonial-name h4 {
    color: #313131 !important;
    font-weight: 600;
}

.testimonial-name p {
    color: #666 !important;
}

.testimonial-description p {
    color: #444 !important;
}

.testimonial-description p:before {
    color: #ddd !important;
}

/* Logo Adjustments */
.logo img {
    height: auto !important;
    max-height: 80px !important;
    width: auto;
    object-fit: contain;
    padding: 5px 0;
}

#strickymenu.sticky .logo img {
    max-height: 60px !important;
}
