/* ============================================
   Axis Global Automation - Main Stylesheet
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
}

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

a:hover {
    color: #3b82f6;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-xl-12, .col-xl-6, .col-xl-4, .col-xl-3,
.col-lg-12, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4,
.col-md-12, .col-md-6, .col-md-4,
.col-sm-12 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 576px) {
    .col-sm-12 { width: 100%; }
}

@media (min-width: 768px) {
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-4 { width: 33.333%; }
    .col-lg-5 { width: 41.667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333%; }
    .col-lg-12 { width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.333%; }
    .col-xl-6 { width: 50%; }
    .col-xl-12 { width: 100%; }
}

/* Float utilities */
.float-left { float: left; }
.float-right { float: right; }

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ============================================
   Header Styles
   ============================================ */
.header-style1-area {
    background: #fff;
    padding: 25px 0;
}

.header-style1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-axis {
    font-size: 48px;
    font-weight: 900;
    color: #3b82f6;
    letter-spacing: 1px;
    font-style: italic;
}

.logo-r {
    font-size: 14px;
    color: #3b82f6;
    vertical-align: super;
    font-style: normal;
}

.logo-global {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 400;
}

.logo-text-white {
    color: #fff;
}

.logo-text-white .logo-axis {
    color: #fff;
    font-size: 42px;
}

.logo-text-white .logo-r {
    color: #fff;
}

.logo-text-white .logo-global {
    color: #ccc;
    font-size: 13px;
}

.logo-text-white .logo-group {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
    letter-spacing: 3px;
}

/* Header Right Section */
.headers1-header-right {
    /* display: flex; */
    align-items: center;
    gap: 30px;
    display: none;
}

.certified-logo {
    display: flex;
    align-items: center;
}

.iso-badge {
    display: flex;
    border: 2px solid #1e3a5f;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.iso-text {
    font-size: 8px;
    color: #1e3a5f;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
}

.iso-num {
    font-size: 10px;
    color: #1e3a5f;
    font-weight: bold;
    margin-left: 3px;
}

.headers1-button {
    display: flex;
    align-items: center;
    gap: 12px;
}

.headers1-button .icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.headers1-button .text span {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.headers1-button .text h3 {
    font-size: 20px;
    color: #3b82f6;
    font-weight: 700;
}

/* ============================================
   Main Menu Styles
   ============================================ */
.mainmenu-area {
    background: #3b82f6;
    position: relative;
}

.mainmenu-area.stricky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-menu {
    position: relative;
}

.navbar-header {
    display: none;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation li {
    position: relative;
}

.navigation li a {
    display: block;
    padding: 18px 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navigation li a:hover {
    background: rgba(0,0,0,0.1);
}

.navigation li.dropdown > a i {
    margin-left: 5px;
    font-size: 11px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #3b82f6;
}

/* ============================================
   Main Slider Styles
   ============================================ */
.main-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
    color: #fff;
}

.big-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content .text {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 20;
}

.prev-slide, .next-slide {
    width: 55px;
    height: 100px;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover, .next-slide:hover {
    background: #3b82f6;
    color: #fff;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3b82f6;
}

.dot:hover {
    background: #fff;
}

/* ============================================
   Button Styles
   ============================================ */
.btn-one {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #3b82f6;
    color: #fff;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-one:hover {
    background: #0030a0;
    color: #fff;
}

.btn-two {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #3b82f6;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #3b82f6;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-two:hover {
    background: #3b82f6;
    color: #fff;
}

/* ============================================
   Section Title Styles
   ============================================ */
.secpd3 {
    padding: 80px 0;
}

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

.sec-title .title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.sec-title .title span {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-title .title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #3b82f6;
}

.sec-title p {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.8;
}

.sec-title.center {
    text-align: center;
}

/* ============================================
   Services Style 2 (Capabilities)
   ============================================ */
.services-style2-area {
    background: #fff;
}

.single-service-style1 {
    background: #fff;
    padding: 30px 25px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.single-service-style1:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #ddd;
}

.single-service-style1 .inner {
    display: flex;
    gap: 18px;
}

.icon-box {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.text-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.text-box p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* ============================================
   Slogan Area
   ============================================ */
.slogan-area {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
}

.slogan-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.9);
}

.slogan-area .container {
    position: relative;
    z-index: 1;
}

.slogan-area .inner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slogan-area .title h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    max-width: 700px;
    line-height: 1.4;
}

.slogan-area .button .btn-one {
    background: transparent;
    border: 2px solid #fff;
}

.slogan-area .button .btn-one:hover {
    background: #fff;
    color: #3b82f6;
}

/* ============================================
   Services Style 1 (Services & Support)
   ============================================ */
.services-style1-area {
    background: #fff;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.service_s1_title {
    margin-bottom: 0;
}

.service_s1_title .title span {
    font-size: 24px;
}

.service_s1_text {
    flex: 1;
    padding: 0 40px;
}

.service_s1_text p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.service_s1_button .btn-two {
    color: #3b82f6;
    border-color: #3b82f6;
}

.service_s1_button .btn-two:hover {
    background: #3b82f6;
    color: #fff;
}

.single-service-style1.with-image {
    padding: 0;
    overflow: hidden;
    border: 1px solid #eee;
}

.single-service-style1.with-image .img-holder {
    overflow: hidden;
}

.single-service-style1.with-image .img-holder img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-service-style1.with-image:hover .img-holder img {
    transform: scale(1.05);
}

.single-service-style1.with-image .text-holder {
    padding: 25px;
}

.single-service-style1.with-image .text-holder h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.single-service-style1.with-image .text-holder h3 a {
    color: #3b82f6;
}

.single-service-style1.with-image .text-holder h3 a:hover {
    color: #3b82f6;
}

.single-service-style1.with-image .text-holder p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* ============================================
   Company Info Area
   ============================================ */
.company-info-area {
    padding: 80px 0;
    background: #f9f9f9;
}

.video-holder-box {
    position: relative;
}

.video-holder-box .img-holder {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.video-holder-box .img-holder img {
    width: 100%;
}

.icon-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-holder .icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-holder .icon:hover {
    background: #3b82f6;
    transform: scale(1.1);
}

.icon-holder .icon i {
    font-size: 30px;
    color: #fff;
}

.capabilities-content {
    padding-left: 40px;
}

.capabilities-content h1 {
    font-size: 26px;
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capabilities-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.capabilities-content ul {
    margin-bottom: 25px;
}

.capabilities-content ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.capabilities-content ul li i {
    color: #3b82f6;
    font-size: 16px;
}

.learn-more {
    margin-top: 10px;
}

/* Company Info Stats */
.company-info {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #ddd;
}

.single-info-of-company {
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-info-of-company .icon-holder {
    position: static;
    transform: none;
    width: 55px;
    height: 55px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.single-info-of-company .icon-holder i {
    font-size: 24px;
    color: #fff;
}

.title-holder h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.title-holder span {
    font-size: 13px;
    color: #888;
}

/* ============================================
   Call Us Area
   ============================================ */
.call-us-area {
    position: relative;
    padding: 80px 0;
}

.call-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.call-us-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.85);
}

.call-us-area .container {
    position: relative;
    z-index: 1;
}

.call-us-title {
    text-align: center;
}

.call-us-title .title span {
    color: #fff;
}

.call-us-title .title::after {
    background: #fff;
}

.call-us-text {
    text-align: center;
    margin-bottom: 50px;
}

.call-us-text p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

/* Contact Info Box */
.contact-info-box {
    background: #3b82f6;
    padding: 35px 30px;
    border-radius: 5px;
}

.contact-info-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-box ul li .icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-box ul li .icon i {
    font-size: 18px;
    color: #fff;
}

.contact-info-box ul li .title h3 {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-box ul li .title span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.find-map-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.find-map-box .icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-map-box .icon i {
    font-size: 18px;
    color: #fff;
}

.find-map-box .text .btn-two {
    color: #fff;
    border-color: #fff;
    padding: 10px 18px;
    font-size: 12px;
}

.find-map-box .text .btn-two:hover {
    background: #fff;
    color: #3b82f6;
}

/* Contact Form */
.contact-info-form {
    background: #fff;
    padding: 35px;
    border-radius: 5px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #555;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #3b82f6;
    outline: none;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #999;
}

.input-box textarea {
    height: 145px;
    resize: vertical;
}

.captcha-box label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.captcha-code {
    display: inline-block;
    background: #d35400;
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.contact-info-form .btn-one {
    width: 100%;
    justify-content: center;
    padding: 14px;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer-area {
    background: #1a1a1a;
    padding: 60px 0 30px;
}

.single-footer-widget {
    margin-bottom: 30px;
}

.single-footer-widget .title h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3b82f6;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info-text p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.solutions-links li,
.useful-links li {
    margin-bottom: 12px;
}

.solutions-links li a,
.useful-links li a {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solutions-links li a::before,
.useful-links li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #3b82f6;
    font-size: 12px;
}

.solutions-links li a:hover,
.useful-links li a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

.newsletter-box .text p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.newsletter-box .text p i {
    color: #3b82f6;
    margin-right: 8px;
    width: 16px;
}

.footer-social-links {
    margin-top: 25px;
}

.sociallinks-style-two {
    display: flex;
    gap: 10px;
}

.sociallinks-style-two li a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sociallinks-style-two li a:hover {
    background: #3b82f6;
}

/* Footer Bottom */
.footer-bottom-area {
    background: #111;
    padding: 20px 0;
}

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

.copyright-text p {
    color: #666;
    font-size: 13px;
}

.footer-menu {
    display: flex;
    gap: 25px;
}

.footer-menu li a {
    color: #666;
    font-size: 13px;
}

.footer-menu li a:hover {
    color: #3b82f6;
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #0030a0;
    transform: translateY(-3px);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 991px) {
    .mobileHide {
        display: none !important;
    }
    
    .navbar-header {
        display: block;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0030a0;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navigation {
        flex-direction: column;
    }
    
    .navigation li {
        width: 100%;
    }
    
    .navigation li a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: #fff;
        padding-left: 40px;
    }
    
    .main-slider {
        height: 450px;
    }
    
    .big-title {
        font-size: 36px;
    }
    
    .slide-content {
        left: 40px;
        right: 40px;
    }
    
    .slogan-area .inner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .slogan-area .title h3 {
        font-size: 20px;
    }
    
    .service-header-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service_s1_text {
        padding: 0;
    }
    
    .capabilities-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .single-info-of-company {
        margin-bottom: 25px;
        justify-content: center;
    }
    
    .contact-info-box {
        margin-bottom: 30px;
    }
    
    .footer-bottom-area .inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Fix card spacing on tablet */
    .single-service-style1 {
        margin-bottom: 20px;
    }
    
    .service-header-row {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .header-style1 {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-axis {
        font-size: 36px;
    }
    
    .main-slider {
        height: 400px;
    }
    
    .big-title {
        font-size: 28px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .slide-content .text {
        font-size: 14px;
    }
    
    .sec-title .title span {
        font-size: 22px;
    }
    
    .single-service-style1 .inner {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-box {
        margin: 0 auto;
    }
    
    .prev-slide, .next-slide {
        width: 40px;
        height: 70px;
    }
    
    /* Fix section spacing on mobile */
    .secpd3 {
        padding: 50px 0;
    }
    
    .company-info-area {
        padding: 50px 0;
    }
    
    .call-us-area {
        padding: 50px 0;
    }
    
    .slogan-area {
        padding: 40px 0;
    }
    
    .sec-title {
        margin-bottom: 30px;
    }
    
    .single-service-style1 {
        margin-bottom: 20px;
    }
    
    .service-header-row {
        margin-bottom: 30px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}
