/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo img {
    height: 80px;
    width: 220px;
    object-fit: contain;
}

/* Responsive Logo Styles */
@media (max-width: 1200px) {
    .logo img {
        width: 200px !important;
        height: 75px !important;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 180px !important;
        height: 55px !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 250px !important;
       
    }
}

/* Additional mobile logo clarity optimizations */
@media (max-width: 768px) {
    .header-mobile .logo img,
    .mobile-menu-header .logo img {
        width: 250px !important;

    }
}

@media (max-width: 480px) {
    .header-mobile .logo img,
    .mobile-menu-header .logo img {
        width: 250px !important;

    }
}

.mainnav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainnav ul li {
    position: relative;
    margin: 0 20px;
}

.mainnav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.mainnav ul li a:hover {
    color: #2563eb;
}

.mainnav ul li i {
    font-size: 12px;
    margin-left: 5px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.mainnav ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
    padding: 0;
}

.sub-menu li a {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.header-ct-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.show-search {
    position: relative;
}

.icon-show-search {
    color: #333;
    font-size: 18px;
    cursor: pointer;
}

.submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.show-search:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form .input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.search-submit {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.widget-button {
    background: rgb(30, 58, 138);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.widget-button:hover {
    background: rgb(20, 45, 110);
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Header */
.header-mobile {
    display: none;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-mobile .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
}

.btn-menu {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-menu:hover {
    background: #f1f5f9;
}

.btn-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.btn-menu.active span:first-child {
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
}

.btn-menu.active span:nth-child(2) {
    opacity: 0;
}

.btn-menu.active span:last-child {
    transform: rotate(-45deg);
    position: absolute;
    top: 8px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav ul li {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-menu-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-menu-nav ul li a:hover {
    background-color: #f8fafc;
    color: #2563eb;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.page-title-home1 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-title-home1 .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-title-home1 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-title-home1 h1 span {
    color: #fbbf24;
}

.page-title-home1 p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-title-home1 .text {
    margin-top: 30px;
    font-size: 1.1rem;
}

.page-title-home1 .text a {
    color: #fbbf24;
    text-decoration: none;
    margin-left: 10px;
}

.page-title-home1 .image1 {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    border-radius: 10px;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.icon-bg img {
    position: absolute;
    opacity: 0.1;
}

.icon-1 { top: 20%; left: 10%; }
.icon-2 { top: 30%; right: 20%; }
.icon-3 { bottom: 30%; left: 15%; }
.icon-4 { bottom: 20%; right: 10%; }
.image3 { top: 0; right: 0; width: 50%; height: 100%; }
.image2 { bottom: 0; left: 0; width: 40%; height: 60%; }

/* Section Styles */
.tf-section {
    padding: 80px 0;
}

.tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.widget-title-section {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
    text-align: center;
    width: 100%;
}

.sub-title {
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.line-before::before,
.line-after::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #2563eb;
}

.line-before::before {
    right: 100%;
}

.line-after::after {
    left: 100%;
}

/* Partners Section */
.section-partners {
    background: #f8fafc;
}

.partners {
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.swiper-slide img:hover {
    filter: grayscale(0%);
}

/* Services Section */
.widget-service {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.widget-service-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.widget-service-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Add padding to the right of the first service item (HR Consultancy) */
.widget-service-item:first-child {
    padding-right: 30px;
}

.widget-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.widget-service-item .poster {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.widget-service-item .poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.widget-service-item:hover .poster img {
    transform: scale(1.05);
}

.widget-service-item .content {
    padding: 40px 35px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.widget-service-item .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.widget-service-item:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.widget-service-item .icon i {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.widget-service-item .text {
    margin-bottom: 20px;
    text-align: center;
}

.widget-service-item .text a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    transition: color 0.3s ease;
}

.widget-service-item .text a:hover {
    color: #2563eb;
}

.widget-service-item p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    flex: 1;
    text-align: center;
}

.widget-service-item .widget-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 140px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.widget-service-item .widget-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.widget-service-item .widget-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.widget-service-item .widget-button:hover::before {
    left: 100%;
}

/* About Us Section */
.widget-about-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.widget-about-us .content ul {
    list-style: none;
    margin: 30px 0;
}

.widget-about-us .content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #6b7280;
}

.widget-about-us .content ul li i {
    color: #2563eb;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.widget-about-us .phone {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
}

.widget-about-us .phone i {
    color: #2563eb;
    font-size: 24px;
    margin-right: 15px;
}

.widget-about-us .phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.widget-about-us .button {
    display: flex;
    gap: 20px;
}

.widget-about-us .poster img {
    width: 100%;
    border-radius: 10px;
}

/* Project Section */
.widget-project-content {
    text-align: center;
    margin-bottom: 60px;
}

.widget-project-slide {
    position: relative;
}

.widget-project-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.widget-project-item:hover {
    transform: translateY(-5px);
}

.widget-project-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.widget-project-item h6 {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.widget-project-item h4 {
    color: #2563eb;
    font-weight: 600;
}

.icon-arrow-right2 {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #2563eb;
    font-size: 18px;
}

.swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.swiper-button-prev {
    left: -20px;
}

.swiper-button-next {
    right: -20px;
}

/* Why Choose Us Section */
.widget-choose-us-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.widget-choose-us-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.widget-choose-us-item:hover {
    transform: translateY(-5px);
}

.widget-choose-us-item .image {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.widget-choose-us-item .image i {
    color: #fff;
    font-size: 24px;
}

.widget-choose-us-item .text a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.widget-choose-us-item p {
    color: #6b7280;
}

/* Counter Section */
.section-counter {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

.widget-counter-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.widget-counter-item .number-wrap {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fbbf24;
}

.widget-counter-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Get Quote Section */
.section-get-quote {
    background: #f8fafc;
}

.get-quote-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.get-quote-content .main-title {
    color: #1f2937;
}

.get-quote-content .calling {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
}

.get-quote-content .calling i {
    color: #2563eb;
    font-size: 20px;
    margin-right: 15px;
}

.get-quote-poster img {
    width: 100%;
    border-radius: 10px;
}

.get-quote-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tablinks {
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
}

.tablinks.active {
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
}

.comment-wrap-input {
    margin-bottom: 30px;
}

.comment.name-number {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.infor-container input,
.infor-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.range-slider {
    margin: 20px 0;
}

.range-slider .title {
    font-weight: 600;
    margin-bottom: 10px;
}

.range-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.range-container input[type="range"] {
    flex: 1;
}

.value {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
}

.form-submit button {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit button:hover {
    background: #1d4ed8;
}

/* Testimonials Section */
.widget-testimonial-wrap {
    position: relative;
}

.widget-testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 10px;
}

.widget-testimonial-item .heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.widget-testimonial-item .heading img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.widget-testimonial-item .infor .name {
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    display: block;
}

.widget-testimonial-item .infor .info {
    color: #6b7280;
    font-size: 14px;
}

.widget-testimonial-item .stars {
    margin-top: 5px;
}

.widget-testimonial-item .stars i {
    color: #fbbf24;
    font-size: 12px;
}

.widget-testimonial-item .heading i.fa-quote-right {
    position: absolute;
    right: 0;
    top: 0;
    color: #2563eb;
    font-size: 24px;
}

.widget-testimonial-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Blog Update Section */
.widget-blog-update-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.widget-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.widget-post:hover {
    transform: translateY(-5px);
}

.widget-post .image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.widget-post .all-content {
    padding: 25px;
}

.widget-post .sub-content {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6b7280;
}

.widget-post .sub-content i {
    margin-right: 5px;
}

.widget-post .title a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.widget-post p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* Newsletter Section */
.section-newsletter {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

.widget-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-note {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.newsletter button {
    background: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Go Top Button */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #fff;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer .title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fbbf24;
}

.footer .address,
.footer .phone,
.footer .mail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer .icon {
    color: #2563eb;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer .content .text {
    font-weight: 600;
    margin-bottom: 5px;
}

.footer .content p {
    color: #9ca3af;
    margin: 0;
}

.footer .service ul {
    list-style: none;
    padding: 0;
}

.footer .service ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer .service ul li i {
    color: #2563eb;
    font-size: 12px;
    margin-right: 10px;
}

.footer .service ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .service ul li a:hover {
    color: #fff;
}

.footer .comment-respond form {
    margin-top: 20px;
}

.footer .comment-respond input,
.footer .comment-respond select {
    width: 100%;
    padding: 12px;
    border: 1px solid #374151;
    border-radius: 5px;
    background: #374151;
    color: #fff;
    margin-bottom: 15px;
}

.footer .comment-respond input::placeholder {
    color: #9ca3af;
}

.footer .comment-respond button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    background: #111827;
    padding: 20px 0;
    border-top: 1px solid #374151;
}

.footer-bottom .row {
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
}

.widget-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.widget-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-social a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ===================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =================================== */

/* Enhanced Responsive Design for All Pages */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .header-wrap {
        max-width: 1400px;
    }
    
    .page-title-home1 h1 {
        font-size: 4.5rem;
    }
    
    .widget-service-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Desktop (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .page-title-home1 h1 {
        font-size: 4rem;
    }
    
    .widget-service-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

/* Large Tablet (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .page-title-home1 h1 {
        font-size: 3.5rem;
    }
    
    .widget-service-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .widget-choose-us-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .widget-counter-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    /* Header Responsive */
    .header-wrap {
        padding: 0 15px;
    }
    
    .mainnav {
        display: none;
    }
    
    .header-mobile {
        display: block;
    }
    
    /* Banner Section */
    .banner-section .banner-image {
        height: 80vh;
        min-height: 600px;
    }
    
    .banner-section .banner-overlay {
        padding: 60px 40px;
        max-width: 90%;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        margin-bottom: 25px;
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        margin-bottom: 35px;
    }
    
    /* Service Section */
    .widget-service-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .widget-service-item .content {
        padding: 30px 25px 25px;
    }
    
    .widget-service-item .icon {
        width: 60px;
        height: 60px;
        margin: -30px auto 20px;
    }
    
    .widget-service-item .icon i {
        font-size: 24px;
    }
    
    /* About Section */
    .widget-about-us {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .widget-about-us .content {
        padding-right: 0;
        order: 2;
    }
    
    .widget-about-us .poster {
        order: 1;
    }
    
    /* Choose Us Section */
    .widget-choose-us-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Counter Section */
    .widget-counter-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Footer */
    .footer .row {
        text-align: center;
    }
    
    .widget-social {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Mobile (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    /* Header */
    .header-wrap {
        flex-direction: column;
        gap: 15px;
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    /* Banner Section */
    .banner-section .banner-image {
        height: 70vh;
        min-height: 500px;
    }
    
    .banner-section .banner-overlay {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 20px;
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        margin-bottom: 30px;
    }
    
    .banner-section .widget-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .banner-section .trust-indicators {
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Service Section */
    .widget-service-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .widget-service-item .content {
        padding: 25px 20px 20px;
    }
    
    .widget-service-item .icon {
        width: 55px;
        height: 55px;
        margin: -27px auto 20px;
    }
    
    .widget-service-item .icon i {
        font-size: 22px;
    }
    
    /* About Section */
    .widget-about-us {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .widget-about-us .main-title {
        font-size: 2rem;
    }
    
    .widget-about-us .button {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Choose Us Section */
    .widget-choose-us-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .widget-choose-us-item {
        padding: 30px 25px;
    }
    
    /* Counter Section */
    .widget-counter-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer */
    .footer .row {
        text-align: center;
    }
    
    .comment.name-number {
        grid-template-columns: 1fr;
    }
    
    .newsletter form {
        flex-direction: column;
    }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Header */
    .header-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 8px 10px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .header-ct-right .widget-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* Banner Section */
    .banner-section .banner-image {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-section .banner-overlay {
        padding: 30px 20px;
        max-width: 98%;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
        margin-bottom: 25px;
    }
    
    .banner-section .widget-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 5px;
    }
    
    .banner-section .trust-indicators {
        gap: 15px;
        margin-top: 25px;
    }
    
    .banner-section .trust-indicators > div > div:first-child {
        font-size: 1.2rem;
    }
    
    .banner-section .trust-indicators > div > div:last-child {
        font-size: 0.8rem;
    }
    
    /* Service Section */
    .widget-service-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .widget-service-item .content {
        padding: 20px 15px 15px;
    }
    
    .widget-service-item .icon {
        width: 50px;
        height: 50px;
        margin: -25px auto 15px;
    }
    
    .widget-service-item .icon i {
        font-size: 20px;
    }
    
    .widget-service-item .text a {
        font-size: 1rem;
    }
    
    .widget-service-item p {
        font-size: 0.9rem;
    }
    
    .widget-service-item .widget-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    /* About Section */
    .widget-about-us {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .widget-about-us .main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .widget-about-us p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .widget-about-us ul li {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .widget-about-us .button {
        flex-direction: column;
        gap: 12px;
    }
    
    .widget-about-us .button .widget-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Choose Us Section */
    .widget-choose-us-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .widget-choose-us-item {
        padding: 25px 20px;
    }
    
    .widget-choose-us-item .image {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .widget-choose-us-item .text a {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .widget-choose-us-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Counter Section */
    .widget-counter-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .widget-counter-item {
        text-align: center;
    }
    
    .widget-counter-item .number-wrap {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .widget-counter-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Section Spacing */
    .section-service,
    .section-about-us,
    .section-choose-us,
    .section-counter {
        padding: 40px 0;
    }
    
    /* Title Sections */
    .widget-title-section {
        margin-bottom: 40px;
    }
    
    .widget-title-section .main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .widget-title-section .sub-title {
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer .row {
        text-align: center;
    }
    
    .widget-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .comment.name-number {
        grid-template-columns: 1fr;
    }
    
    .newsletter form {
        flex-direction: column;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    /* Banner Section */
    .banner-section .banner-overlay {
        padding: 25px 15px;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .banner-section .widget-button {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Service Section */
    .widget-service-item .content {
        padding: 15px;
    }
    
    .widget-service-item .icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .widget-service-item .text a {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .widget-service-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .widget-service-item .widget-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    /* About Section */
    .widget-about-us .main-title {
        font-size: 1.6rem;
    }
    
    /* Title Sections */
    .widget-title-section .main-title {
        font-size: 1.6rem;
    }
}

/* ===================================
   PAGE-SPECIFIC RESPONSIVE STYLES
   =================================== */

/* About Page Responsive */
@media (max-width: 991px) {
    .page-header {
        background-attachment: scroll;
        padding: 100px 0 80px 0;
        min-height: 500px;
        height: 70vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px 0;
        min-height: 400px;
        height: 60vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    /* Vision & Mission Section */
    .col-lg-4 {
        margin-bottom: 30px;
    }
    
    /* Advantages Section */
    .widget-choose-us-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Services Page Responsive */
@media (max-width: 991px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 25px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* Testimonials Page Responsive */
@media (max-width: 991px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card::before,
    .testimonial-card::after {
        font-size: 2.5rem;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .testimonial-card::before,
    .testimonial-card::after {
        font-size: 2rem;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .client-title {
        font-size: 0.8rem;
    }
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-form-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .form-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-input {
        padding: 12px 45px 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .office-block {
        margin-bottom: 20px;
    }
    
    .office-title {
        font-size: 1.6rem;
    }
    
    .office-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 50px 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-input {
        padding: 10px 40px 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-group i {
        right: 15px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .office-block {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .office-title {
        font-size: 1.5rem;
    }
    
    .office-details p {
        font-size: 0.85rem;
    }
}

/* ===================================
   ENHANCED MOBILE NAVIGATION
   =================================== */

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header-mobile {
        display: block !important;
    }
    
    .header-ct-center {
        display: none !important;
    }
    
    .header-ct-right {
        display: none !important;
    }
    
    .mainnav {
        display: none;
    }
    
    /* Add margin to body to account for fixed mobile header */
    body {
        margin-top: 80px;
    }
    
    .header-customize-item.mobile-menu-toggle {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #1e293b;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        left: 0;
    }
    
    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #64748b;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu ul li {
        border-bottom: 1px solid #f1f5f9;
    }
    
    .mobile-menu ul li a {
        display: block;
        padding: 15px 20px;
        color: #1e293b;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-menu ul li a:hover,
    .mobile-menu ul li.current-menu-item a {
        background: #f8fafc;
        color: #2563eb;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===================================
   TOUCH DEVICE OPTIMIZATIONS
   =================================== */

/* Touch-friendly buttons and interactions */
@media (hover: none) and (pointer: coarse) {
    .widget-button,
    .submit-btn,
    .mobile-menu-toggle,
    .mobile-menu-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    .widget-service-item,
    .widget-choose-us-item,
    .testimonial-card,
    .office-block {
        cursor: pointer;
    }
    
    .widget-service-item:hover,
    .widget-choose-us-item:hover,
    .testimonial-card:hover,
    .office-block:hover {
        transform: none;
    }
    
    .widget-service-item:active,
    .widget-choose-us-item:active,
    .testimonial-card:active,
    .office-block:active {
        transform: scale(0.98);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .header,
    .footer,
    .widget-button,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .banner-section .banner-image {
        height: auto !important;
        min-height: auto !important;
    }
    
    .banner-section .banner-overlay {
        position: static !important;
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }
    
    .banner-section .banner-overlay h2 {
        color: black !important;
    }
    
    .banner-section .banner-overlay p {
        color: black !important;
    }
    
    .widget-service-item,
    .widget-choose-us-item,
    .testimonial-card,
    .office-block {
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .section-service,
    .section-about-us,
    .section-choose-us,
    .section-counter {
        page-break-inside: avoid;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

/* Focus styles for keyboard navigation */
.widget-button:focus,
.submit-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.form-input:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .widget-button,
    .submit-btn {
        border: 2px solid currentColor;
    }
    
    .widget-service-item,
    .widget-choose-us-item,
    .testimonial-card,
    .office-block {
        border: 2px solid #1e293b;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .banner-section .banner-overlay > div,
    .banner-section .banner-overlay h2,
    .banner-section .banner-overlay p,
    .banner-section .banner-overlay .widget-button,
    .banner-section .banner-overlay .trust-indicators > div {
        animation: none !important;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* Optimize for low-end devices */
@media (max-width: 480px) and (max-device-width: 480px) {
    .banner-section .banner-image {
        background-attachment: scroll;
    }
    
    .widget-service-item:hover,
    .widget-choose-us-item:hover,
    .testimonial-card:hover,
    .office-block:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .widget-button:hover,
    .submit-btn:hover {
        transform: none;
    }
}

/* ===================================
   LANDSCAPE ORIENTATION OPTIMIZATIONS
   =================================== */

@media (max-height: 500px) and (orientation: landscape) {
    .banner-section .banner-image {
        height: 100vh;
        min-height: 300px;
    }
    
    .banner-section .banner-overlay {
        padding: 20px 30px;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        margin-bottom: 10px;
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 15px;
    }
    
    .banner-section .widget-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .banner-section .trust-indicators {
        margin-top: 15px;
    }
    
    .page-header {
        padding: 60px 0 40px 0;
        min-height: 300px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 20px;
    }
}

/* ===================================
   Animation Classes
   =================================== */

.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Banner Scroll Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Banner Section Enhancements */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .banner-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    box-shadow: none ;
    filter: drop-shadow(none) !important;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    z-index: 1;
}

.banner-overlay {
    position: relative;
    z-index: 2;
}

/* Enhanced Button Hover Effects */
.banner-section .widget-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.banner-section .widget-button[style*="background: transparent"]:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
    transform: translateY(-3px);
}

/* Trust Indicators Animation */
.banner-section .trust-indicators > div {
    transition: all 0.3s ease;
    position: relative;
}

.banner-section .trust-indicators > div:hover {
    transform: scale(1.05);
}

.banner-section .trust-indicators > div::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.banner-section .trust-indicators > div:hover::before {
    opacity: 1;
}

/* Company Badge Animation */
.banner-section .banner-overlay > div:first-child {
    animation: slideInDown 1s ease-out;
}

/* Main Heading Animation */
.banner-section .banner-overlay h2 {
    animation: slideInUp 1.2s ease-out 0.3s both;
}

/* Subtitle Animation */
.banner-section .banner-overlay p {
    animation: slideInUp 1.2s ease-out 0.6s both;
}

/* Buttons Animation */
.banner-section .banner-overlay .widget-button {
    animation: slideInUp 1.2s ease-out 0.9s both;
}

/* Trust Indicators Animation */
.banner-section .banner-overlay .trust-indicators > div {
    animation: slideInUp 1.2s ease-out 1.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   =================================== */

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    .widget-button,
    .submit-btn,
    .mobile-menu-toggle,
    .mobile-menu-close,
    .search-submit {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improve form inputs on mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px 15px !important;
        border-radius: 8px !important;
    }
    
    /* Better spacing for mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Improve card interactions */
    .widget-service-item,
    .widget-choose-us-item,
    .testimonial-card,
    .service-card,
    .office-block {
        margin-bottom: 20px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .widget-service-item:active,
    .widget-choose-us-item:active,
    .testimonial-card:active,
    .service-card:active,
    .office-block:active {
        transform: scale(0.98);
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .banner-section .banner-image {
        height: 100vh;
        min-height: 300px;
    }
    
    .banner-section .banner-overlay {
        padding: 20px 30px;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        margin-bottom: 10px;
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 15px;
    }
    
    .page-header {
        padding: 60px 0 40px 0;
        min-height: 300px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 20px;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .banner-section .banner-image img,
    .page-header {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* This can be expanded for dark mode support */
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .widget-button,
    .mobile-menu,
    .mobile-menu-overlay,
    .btn-menu,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .banner-section .banner-image {
        height: auto !important;
        min-height: auto !important;
    }
    
    .banner-section .banner-overlay {
        position: static !important;
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }
    
    .banner-section .banner-overlay h2,
    .banner-section .banner-overlay p {
        color: black !important;
    }
    
    .widget-service-item,
    .widget-choose-us-item,
    .testimonial-card,
    .service-card,
    .office-block {
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .section-service,
    .section-about-us,
    .section-choose-us,
    .section-counter {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Focus styles for keyboard navigation */
.widget-button:focus,
.submit-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.form-input:focus,
.search-input:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .widget-button,
    .submit-btn {
        border: 2px solid currentColor;
    }
    
    .widget-service-item,
    .widget-choose-us-item,
    .testimonial-card,
    .service-card,
    .office-block {
        border: 2px solid #1e293b;
    }
    
    .banner-section .banner-overlay h2,
    .banner-section .banner-overlay p {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
}

/* Performance optimizations for low-end devices */
@media (max-width: 480px) and (max-device-width: 480px) {
    .banner-section .banner-image {
        background-attachment: scroll;
    }
    
    .widget-service-item:hover,
    .widget-choose-us-item:hover,
    .testimonial-card:hover,
    .service-card:hover,
    .office-block:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .widget-button:hover,
    .submit-btn:hover {
        transform: none;
    }
    
    /* Reduce animations on low-end devices */
    .banner-section .banner-overlay > div,
    .banner-section .banner-overlay h2,
    .banner-section .banner-overlay p,
    .banner-section .banner-overlay .widget-button,
    .banner-section .banner-overlay .trust-indicators > div {
        animation: none !important;
    }
}

/* Ensure proper spacing on ultra-wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .banner-section .banner-overlay {
        max-width: 1000px;
    }
    
    .widget-service-wrap {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Ensure proper display on very small screens */
@media (max-width: 320px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .banner-section .banner-overlay {
        padding: 20px 15px;
    }
    
    .banner-section .banner-overlay h2 {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
    }
    
    .banner-section .banner-overlay p {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    }
    
    .widget-service-item .content,
    .widget-choose-us-item,
    .testimonial-card {
        padding: 15px !important;
    }
    
    .widget-service-item .icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .widget-service-item .text a {
        font-size: 0.9rem !important;
    }
    
    .widget-service-item p {
        font-size: 0.8rem !important;
    }
}

/* Blue overlay for banner image in mobile view */
@media (max-width: 768px) {
    .banner-section .banner-image {
        position: relative;
    }
    
    .banner-section .banner-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(30, 58, 138, 0.1);
        z-index: 1;
        pointer-events: none;
    }
    
    .banner-section .banner-overlay {
        z-index: 2;
        position: relative;
    }
}

@media (max-width: 480px) {
    .banner-section .banner-image::before {
        background: rgba(30, 58, 138, 0.1);
    }
}
