:root {
    --primary: #475ca2;
    --primary-dark: #32427a;
    --accent: #f71735;
    --accent-hover: #d1122b;
    --text-main: #555555;
    --text-light: #777777;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border: #e5e5e5;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-1-2 { width: 50%; padding: 15px; }
.col-1-3 { width: 33.333%; padding: 15px; }
.col-1-4 { width: 25%; padding: 15px; }
.col-2-3 { width: 66.666%; padding: 15px; }

@media(max-width: 991px) {
    .col-1-2, .col-1-3, .col-1-4, .col-2-3 { width: 100%; }
}

/* Header */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    margin-right: 20px;
}
.top-bar i {
    margin-right: 5px;
    color: var(--accent);
}

.main-header {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.navbar-header{
    display: none;
}

@media screen and (max-width: 767px) {
    .navbar-header{
        display: block;
    }
}

.logo img {
    max-height: 50px;
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu > a {
    font-weight: 600;
    font-size: 15px;
    color: #222;
    text-transform: uppercase;
    position: relative;
    padding: 30px 0;
}

.nav-menu > a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.hero-content h1 {
    font-size: 50px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content .text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

/* Section Common */
.sec-pad {
    padding: 80px 0;
}

.sec-title {
    margin-bottom: 50px;
    text-align: center;
}

.sec-title span {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.sec-title h2 {
    font-size: 36px;
    color: #222;
    margin: 0;
}

/* Services */
.service-block {
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.service-block:hover {
    transform: translateY(-5px);
}

.service-inner {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 4px;
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-block:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-content h3 a:hover {
    color: var(--primary);
}

.read-more-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

/* Footer */
.main-footer {
    position: relative;
    background-color: #1a202e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #a0a0a0;
    padding: 80px 0 0;
    font-size: 15px;
    z-index: 1;
}

.main-footer .pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.main-footer .auto-container {
    position: relative;
    z-index: 2;
}

.widgets-section {
    padding-bottom: 40px;
}

.footer-column {
    position: relative;
    margin-bottom: 40px;
}

.footer-widget h3 {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    position: relative;
    display: block;
    color: #a0a0a0;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-links li a i {
    margin-right: 10px;
    font-size: 13px;
    color: var(--primary);
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-widget .text {
    margin-bottom: 25px;
    line-height: 1.8em;
}

/* Contact Widget */
.footer-widget.contact-widget .footer-links li {
    margin-bottom: 20px;
}

.footer-widget.contact-widget .icon {
    font-size: 18px;
    color: var(--primary);
    margin-right: 15px;
    position: relative;
    top: 3px;
}

.footer-widget.contact-widget .text-content {
    display: inline-block;
    color: #a0a0a0;
}

.footer-widget.contact-widget a {
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.footer-widget.contact-widget a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    background: #11151e;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright-text {
    color: #888;
}

.footer-bottom .footer-nav {
    display: flex;
    gap: 30px;
}

.footer-bottom .footer-nav li a {
    color: #888;
    transition: all 0.3s ease;
}

.footer-bottom .footer-nav li a:hover {
    color: var(--primary);
}

@media(max-width: 768px) {
    .footer-bottom .inner-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.mobile-nav-toggle { display: none; }

@media(max-width: 991px) {
    .nav-menu { display: none; }
    .mobile-nav-toggle { display: block; font-size: 24px; cursor: pointer; }
    .header-inner { height: 70px; }
}

/* Features */
.features-grid { display: flex; gap: 30px; margin-top: -100px; position: relative; z-index: 10; padding-bottom: 50px; }
.feature-card { flex: 1; background: #fff; padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 4px; text-align: center; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; margin-bottom: 15px; }
.feature-card p { color: #777; font-size: 14px; margin: 0; }
@media(max-width: 768px) { .features-grid { flex-direction: column; margin-top: 30px; } }

/* Header v1 Styles - Modernized Layout */
.auto-container { max-width: 1200px; padding: 0 15px; margin: 0 auto; }
.header-style-one { position: relative; }

/* Top Bar */
.header-top { background: #fff; padding: 10px 0; border-bottom: 1px solid #eee; }
.header-top .auto-container .clearfix { display: flex; justify-content: space-between; align-items: center; }
.top-left { display: flex; align-items: center; }
.info-list { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.info-list li { display: flex; align-items: center; }
.info-list li a { display: flex; align-items: center; color: #555; font-size: 13px; font-weight: 600; }
.info-list li a i, 
.info-list li a span { margin-right: 10px; color: var(--primary); }

/* Main Header */
.header-upper { padding: 0; background: #fff; position: relative; z-index: 99; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.header-upper .auto-container { display: flex; justify-content: space-between; align-items: center; height: 110px; }

.logo-box { padding: 0; display: flex; align-items: center; }
.logo img { max-height: 65px; width: auto; }

.nav-outer { display: flex; align-items: center; gap: 20px; }

/* Desktop Menu */
.main-menu { margin-right: 20px; }
.main-menu .navigation { display: flex; margin: 0; padding: 0; gap: 30px; align-items: center; }
.main-menu .navigation > li { position: relative; list-style: none; }
.main-menu .navigation > li > a { 
    display: block; 
    padding: 45px 0; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: #222; 
    font-size: 14px;
    position: relative;
    line-height: 20px;
}
.main-menu .navigation > li > a::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after {
    width: 100%;
}
.main-menu .navigation > li:hover > a, 
.main-menu .navigation > li.current > a { color: var(--primary); }

/* Dropdown */
.main-menu .navigation > li > ul { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    min-width: 220px; 
    background: #fff; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    display: block; 
    padding: 10px 0; 
    z-index: 100; 
    list-style: none; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 2px solid var(--primary);
}
.main-menu .navigation > li:hover > ul { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}
.main-menu .navigation > li > ul > li { display: block; border-bottom: 1px solid #f5f5f5; }
.main-menu .navigation > li > ul > li:last-child { border-bottom: none; }
.main-menu .navigation > li > ul > li > a { 
    display: block; 
    padding: 12px 20px; 
    color: #555; 
    font-size: 14px; 
    font-weight: 600;
}
.main-menu .navigation > li > ul > li:hover > a { 
    background: var(--light-bg); 
    color: var(--primary); 
    padding-left: 25px;
}

/* Search Box */
.search-box-btn { 
    width: 40px; 
    height: 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: all 0.3s; 
    color: var(--primary);
}
.search-box-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Sticky Header */
.sticky-header { position: fixed; top: 0; left: 0; width: 100%; padding: 0; background: #ffffff; z-index: 999; box-shadow: 0 0 10px rgba(0,0,0,0.1); transition: all 0.3s ease; display: none; }
.sticky-header.fixed-header { display: block; animation: slideDown 0.5s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.sticky-header .auto-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.sticky-header .main-menu .navigation > li > a { padding: 25px 0; }
.sticky-header .main-menu .navigation > li > a::after { bottom: 20px; }

/* Mobile Menu - Minimalist Design */
.mobile-nav-toggler { display: none; cursor: pointer; font-size: 26px; color: #333; transition: all 0.3s ease; }
.mobile-nav-toggler:hover { color: var(--primary); }

.mobile-menu { 
    position: fixed; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 9999; 
    visibility: hidden;
    pointer-events: none; /* Let clicks pass through when hidden */
    transition: all 0.3s;
}

.mobile-menu.visible { visibility: visible; pointer-events: auto; }

.mobile-menu .menu-backdrop { 
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.3); /* Darker backdrop */
    z-index: 1; 
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px); 
}

.mobile-menu.visible .menu-backdrop { opacity: 1; pointer-events: auto; cursor: pointer; }

.mobile-menu .menu-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 320px;
    height: 100%;
    background: #ffffff;
    z-index: 2;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: 0 0 30px rgba(0,0,0,0.1); 
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.visible .menu-box { transform: translateX(0); }

/* Mobile Menu Header */
.mobile-menu .nav-logo { 
    text-align: left; 
    padding: 30px 30px; 
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}
.mobile-menu .nav-logo img { max-height: 70px; width: auto; max-width: 100%; } /* Bigger Logo */

/* Mobile Navigation */
.mobile-menu .navigation { padding: 20px 0; margin: 0; list-style: none; }
.mobile-menu .navigation li { display: block; position: relative; border-bottom: 1px solid #f2f2f2; }
.mobile-menu .navigation li:last-child { border-bottom: none; }
.mobile-menu .navigation li a { 
    display: block; 
    padding: 15px 25px; 
    color: #333; 
    font-weight: 600; 
    font-size: 15px; 
    text-transform: capitalize;
    transition: all 0.3s ease;
}
.mobile-menu .navigation li a:hover { 
    color: var(--primary); 
    padding-left: 30px;
    background: #fafafa;
}

/* Mobile Dropdown Button */
.mobile-menu .navigation li .dropdown-btn { 
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 50px; 
    height: 54px; 
    border-left: 1px solid #f2f2f2;
    text-align: center;
    line-height: 54px;
    cursor: pointer;
    z-index: 5;
    color: #999;
    font-size: 14px;
    display: block;
    background: #fff;
}
.mobile-menu .navigation li .dropdown-btn:hover { background: var(--primary); color: #fff; }
.mobile-menu .navigation li.dropdown .dropdown-btn.open { background: var(--primary); color: #fff; }
.mobile-menu .navigation li.dropdown .dropdown-btn.open span { transform: rotate(180deg); } /* Span rotation */
.mobile-menu .navigation li.dropdown .dropdown-btn span { transition: all 0.3s; display: inline-block; }

/* Submenu */
.mobile-menu .navigation li ul { padding: 0; display: none; background: #fcfcfc; border-top: 1px solid #f2f2f2; }
.mobile-menu .navigation li ul li a { 
    padding: 12px 25px 12px 40px; 
    font-size: 14px; 
    color: #666; 
    font-weight: 500;
}
.mobile-menu .navigation li ul li a:hover { 
    color: var(--primary); 
    background: #fff;
    padding-left: 45px;
}
.mobile-menu .navigation li ul li .dropdown-btn { display: none; } 

/* Hide desktop dropdown btn */
.main-menu .dropdown-btn { display: none; }
.mobile-menu .close-btn { display: none; } /* Handled by backdrop */

@media(max-width: 991px) { 
    .nav-outer .main-menu { display: none; } 
    .mobile-nav-toggler { display: block; } 
    .header-upper .auto-container { height: 70px; }
    .logo img { max-height: 50px; }
    .header-top { display: none; } 
    .search-box-outer { display: none; }
}

/* Search Popup */
.search-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	overflow: hidden;
	background: rgba(255,255,255,0.98);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.search-popup.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.search-popup .popup-inner {
	display: table;
	width: 100%;
	height: 100%;
	text-align: center;
}

.search-popup .close-search {
	position: absolute;
	right: 50px;
	top: 50px;
    transform-origin: center;
	width: 40px;
	height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
	cursor: pointer;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 99;
}

.search-popup .close-search:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.search-popup .search-form {
    display: table-cell;
    vertical-align: middle;
    max-width: 500px;
    margin: 0 auto;
}

.search-popup .search-form form {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-popup .search-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.search-popup .search-form fieldset input[type='search'] {
    position: relative;
    display: block;
    width: 100%;
    line-height: 20px;
    padding: 20px 0;    
    color: #222222;
    font-size: 40px;
    font-weight: 700;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #eeeeee;
    transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type='search']:focus {
    border-color: var(--primary);
    outline: none;
}

.search-popup .search-form fieldset input[type='submit'] {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    font-size: 18px;
    color: var(--primary);
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}
.search-popup .search-form fieldset input[type='submit']:focus { outline: none; }

.search-popup h3 {
    font-size: 16px;
    color: #777;
    margin-top: 20px;
    font-weight: 400;
}

/* Banner Section Fixes */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section h1 {
    font-size: 64px;
    color: #222;
    font-weight: 800;
    line-height: 1.1em;
    margin-bottom: 20px;
}

.banner-section .text {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    line-height: 1.8em;
    margin-bottom: 30px;
    max-width: 600px;
}

.theme-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
}

.theme-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-style-one {
    background: var(--primary);
    color: #ffffff;
}

/* Service Block Two - Modern Design */
.service-block-two {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-block-two .inner-box {
    position: relative;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-block-two .inner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary);
}

.service-block-two .image-box {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-block-two .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-block-two .inner-box:hover .image-box img {
    transform: scale(1.1);
}

.service-block-two .content-box {
    position: relative;
    padding: 35px 25px 30px;
    text-align: left;
}

.service-block-two h3 {
    margin: 0 0 15px;
    font-size: 20px;
    font-weight: 700;
}

.service-block-two h3 a {
    color: #222;
    transition: all 0.3s ease;
}

.service-block-two .inner-box:hover h3 a {
    color: var(--primary);
}

.service-block-two .text {
    color: #777;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.service-block-two .read-more {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
}

.service-block-two .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-block-two .inner-box:hover .read-more i {
    margin-left: 10px;
}

/* Why Us Section */
.why-us-section {
    position: relative;
    background-color: #ffffff;
    padding-bottom: 80px;
}

.why-us-section .sec-title h2 {
    color: #222;
}

.why-us-section .sec-title span {
    color: var(--primary);
}

.why-us-section .theme-btn {
    background: var(--primary);
    color: #ffffff;
}

.why-us-section .theme-btn:hover {
    background: var(--accent);
    color: #ffffff;
}

/* Force 3 Columns on larger screens */
.why-us-section .row {
    display: flex;
    flex-wrap: wrap;
}

.why-us-section .col-1-3 {
    width: 33.333% !important;
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
}

@media (max-width: 768px) {
    .why-us-section .col-1-3 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.why-us-block {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

/* New Layout: Grid based Icon-Left design (No Cards) */
.why-us-block .inner-box {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    padding: 20px 10px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.why-us-block .inner-box:hover {
    background-color: #f8f9fa; /* Very subtle hover bg */
    transform: translateY(-5px);
}

.why-us-block .icon-box {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 80px;
    height: 80px;
    background: rgba(71, 92, 162, 0.08); /* Very light primary */
    color: var(--primary);
    border-radius: 12px; /* Soft square */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 0.3s ease;
    align-self: start; /* Align to top */
}

.why-us-block .inner-box:hover .icon-box {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(71, 92, 162, 0.3);
}

.why-us-block h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    align-self: end; /* Align near text */
    padding-top: 5px;
}

.why-us-block .text {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    color: #777;
    line-height: 1.6em;
}

.why-us-block .text strong,
.why-us-block .text b {
    font-weight: 700;
    color: inherit;
    display: inline;
}

/* Callback Section */
.callback-section {
    position: relative;
    background-color: #f9f9f9;
}

.callback-section .image-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.callback-section .image-box img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.callback-section .image-box:hover img {
    transform: scale(1.05);
}

.callback-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.callback-form .form-group {
    margin-bottom: 20px;
}

.callback-form .form-row {
    display: flex;
    gap: 20px;
}

.callback-form .form-group.half {
    width: 50%;
}

@media(max-width: 768px) {
    .callback-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .callback-form .form-group.half {
        width: 100%;
    }
    .col-1-2 {
        width: 100%;
    }
}

.callback-form input,
.callback-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f4f6ff;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
    font-family: inherit;
}

.callback-form textarea {
    height: 120px;
    resize: none;
}

.callback-form input:focus,
.callback-form textarea:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(71, 92, 162, 0.1);
    outline: none;
}

/* News Section */
.news-section {
    position: relative;
    background-color: #ffffff;
}

.news-block {
    margin-bottom: 30px;
    padding: 0 15px; /* Add padding because we use col-1-3 without padding inside block */
}

.news-block .inner-box {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
}

.news-block .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Page Standard Design */
.page-section {
    position: relative;
    background: #ffffff;
}

.page-section .content-column.col-1 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.text-content {
    font-size: 16px;
    line-height: 1.8em;
    color: #666666;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content h2, 
.text-content h3, 
.text-content h4 {
    color: #222222;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.text-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.text-content ul li {
    position: relative;
    margin-bottom: 10px;
    list-style: disc;
}

.text-content blockquote {
    position: relative;
    padding: 30px 40px;
    margin: 30px 0;
    background: #f9f9f9;
    border-left: 5px solid var(--primary);
    font-size: 18px;
    font-style: italic;
    color: #333;
}

/* Content Table Styles */
.text-content table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    text-align: left; /* Left align as requested */
}

.text-content table th {
    background-color: var(--primary); /* Corporate Blue */
    color: #ffffff;
    font-weight: 700;
    padding: 15px 20px;
    border: 1px solid var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.text-content table td {
    padding: 14px 20px;
    border: 1px solid #e5e5e5;
    color: #555555;
    font-size: 15px;
}

.text-content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.text-content table tr:hover td {
    background-color: #f0f4ff;
    color: var(--primary);
}

/* Sidebar / Image Widget */
.sidebar-column {
    position: relative;
}

.image-widget .image-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid #ffffff;
}

.image-widget .image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-widget .image-inner:hover img {
    transform: scale(1.05);
}

/* Sidebar Categories / Service List Widget */
.sidebar-widget {
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 15px;
}

.sidebar-widget h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.categories-widget ul li {
    position: relative;
    list-style: none;
    margin-bottom: 15px;
}

.categories-widget ul li:last-child {
    margin-bottom: 0;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    color: #555555;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.categories-widget ul li.active a,
.categories-widget ul li a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.categories-widget ul li a i {
    font-size: 14px;
}

/* Page Title / Breadcrumb Section */
.page-title-section {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

.page-title-section .auto-container {
    position: relative;
    z-index: 1;
}

.page-title-section h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.breadcrumb-box .bread-crumb {
    position: relative;
    display: inline-block;
    padding: 8px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.breadcrumb-box .bread-crumb li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 5px;
}

.breadcrumb-box .bread-crumb li a {
    color: #bbbbbb;
    transition: all 0.3s ease;
}

.breadcrumb-box .bread-crumb li a:hover {
    color: var(--accent);
}

.breadcrumb-box .bread-crumb li.sep {
    font-size: 12px;
    color: var(--accent);
}

.news-block .image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-block .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-block .inner-box:hover .image-box img {
    transform: scale(1.1);
}

.news-block .date-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.news-block .date-tag .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.news-block .date-tag .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.news-block .lower-content {
    padding: 25px;
}

.news-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-block h4 a {
    color: #222;
    transition: color 0.3s ease;
}

.news-block h4 a:hover {
    color: var(--primary);
}

.news-block .text {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.7em;
    min-height: 80px;
}

.news-block .read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-block .read-more i {
    margin-left: 8px;
    font-size: 12px;
    transition: margin 0.3s ease;
}

.news-block .read-more:hover i {
    margin-left: 12px;
}

/* Contact Page Styles */
.contact-info-section {
    position: relative;
    padding: 80px 0 50px;
}

.contact-info-box {
    position: relative;
    padding: 40px 30px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.contact-info-box .icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f4f6ff;
    color: var(--primary);
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-box:hover .icon-box {
    background: var(--primary);
    color: #ffffff;
}

.contact-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.contact-info-box p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6em;
}

.contact-info-box p a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-info-box p a:hover {
    color: var(--primary);
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    padding-bottom: 80px;
}

.contact-form-box {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    border-radius: 8px;
    border-top: 5px solid var(--primary);
}

.contact-form-box .sec-title {
    margin-bottom: 30px;
    text-align: left;
}

.contact-form-box .form-group {
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    height: 50px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form-box textarea {
    height: 150px;
    resize: none;
    padding: 20px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(71, 92, 162, 0.1);
    outline: none;
}

.contact-form-box button {
    background: var(--primary); /* Corporate Blue */
    color: #ffffff;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.contact-form-box button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-section {
    height: 100%;
    min-height: 500px; /* Ensure map has height */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 500px;
}

/* About Section Styles */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
}

.about-image-box {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.about-image-box .image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image-box .image img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image-box .image:hover img {
    transform: scale(1.05);
}

.about-image-box .experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent);
    padding: 30px 25px;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(247, 23, 53, 0.3);
    z-index: 2;
}

.about-image-box .experience-badge span.count {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.about-image-box .experience-badge span.text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    position: relative;
    padding-left: 30px;
}

.about-content .text {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8em;
}

.about-content .text p{
    margin-bottom: 20px;
}

.about-content .btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
}

.about-content .btn:hover {
    background: var(--primary);
    color: #fff;
}

