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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Top Bar */
.top-bar {
    background-color: #f5f5f5;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.top-bar-left a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #0066cc;
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo .company-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo .company-name {
    font-size: 18px;
    font-weight: 600;
    color: #fe8a0f;
    white-space: nowrap;
}

.logo .company-since {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.iso-logo {
    height: 50px;
    width: auto;
}

.top-nav {
    display: flex;
    gap: 15px;
}

.top-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: #0066cc;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.quote-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #0052a3;
}

/* Main Navigation */
.main-nav {
    background-color: #0066cc;
    padding: 0;
}

.main-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    display: block;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background-color: #0052a3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu > li > a span {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    list-style: none;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu a {
    color: #333;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

.nav-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Slider Section */
.slider-section {
    position: relative;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active,
.slider-dot:hover {
    background-color: #fff;
}

/* Quick Actions Overlay on Slider */
.quick-actions-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.quick-actions-overlay .container {
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.quick-actions-overlay .action-box {
    pointer-events: auto;
}

.action-box {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

.action-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.action-box-header img {
    height: 25px;
    flex-shrink: 0;
}

.action-box-header h3 {
    color: #0066cc;
    margin: 0;
    font-size: 18px;
    white-space: nowrap;
}

.track-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex: 1;
}

.track-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
}

.track-form button {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.track-form button:hover {
    background-color: #0052a3;
}

.alert-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-options a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.alert-options a:hover {
    background-color: #f5f5f5;
}

.alert-options img {
    width: 24px;
    height: 24px;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    transition: transform 0.3s;
}

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

.service-image-wrapper {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
}

.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 1;
    transition: opacity 0.3s;
}

.service-card:hover .service-image-wrapper::before {
    opacity: 0;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.service-image-wrapper h3 {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    z-index: 2;
    text-align: center;
    width: 100%;
    background-color: rgba(0, 102, 204, 0.8);
    padding: 10px 15px;
    box-sizing: border-box;
}

.service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Network Section */
.network-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    margin-bottom: 40px;
}

.network-map {
    text-align: center;
}

.network-map img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Video Section */
.video-section {
    padding: 50px 0;
    margin-bottom: 40px;
}

.video-container {
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
    border-radius: 8px;
}

/* News Section */
.news-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.news-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
}

.news-date {
    text-align: center;
    min-width: 80px;
}

.news-date .day {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #0066cc;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.news-date .year {
    display: block;
    font-size: 14px;
    color: #666;
}

.news-content h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 18px;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.read-more-btn:hover {
    background-color: #0052a3;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 50px 0;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    background-image: url('img/map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(249, 249, 249, 0.8);
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.why-item {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.why-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.why-item-header img {
    width: auto;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.why-item-header h3 {
    color: #0066cc;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.why-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.why-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    margin-bottom: 40px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial .author {
    color: #0066cc;
    font-weight: bold;
    font-style: normal;
}

.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-controls button {
    background-color: #0066cc;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.testimonial-controls button:hover {
    background-color: #0052a3;
}

/* Clients Section */
.clients-section {
    padding: 50px 0;
    margin-bottom: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.clients-grid img {
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: transform 0.3s;
}

.clients-grid img:hover {
    transform: scale(1.05);
}

.clients-grid a {
    display: block;
}

/* Page Header */
.page-header {
    background-color: #0066cc;
    color: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

/* Page Content */
.page-content {
    padding: 40px 0;
    margin-bottom: 40px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: #0066cc;
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-wrapper li {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.feature-item img {
    width: 30px;
    height: auto;
    margin-bottom: 10px;
}

.feature-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Services Detail */
.services-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-text ul {
    margin-left: 30px;
}

.service-text li {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: #0066cc;
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h3 {
    color: #0066cc;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 10px;
}

.contact-social img {
    width: 32px;
    height: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

#form-message {
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

#form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#quote-form-message {
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

#quote-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#quote-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social img {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 24px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.quote-form button {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quote-form button:hover {
    background-color: #0052a3;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .why-choose-content {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .logo .company-name {
        font-size: 16px;
    }

    .logo .company-since {
        font-size: 11px;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .top-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .social-icons {
        order: 2;
    }

    .quote-btn {
        order: 1;
        width: 100%;
        max-width: 200px;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav .container {
        flex-direction: row;
        padding: 0;
        justify-content: space-between;
        align-items: center;
        min-height: 50px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0066cc;
        display: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li:last-child > a {
        border-bottom: none;
    }

    .slider-container {
        height: 400px;
    }

    .quick-actions-overlay {
        top: 50%;
        transform: translateY(-50%);
    }

    .quick-actions-overlay .container {
        padding: 0 15px;
    }

    .action-box {
        width: 100%;
        max-width: 400px;
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .service-image-wrapper h3 {
        font-size: 16px;
        padding: 8px 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-image {
        order: -1;
        margin-bottom: 20px;
    }

    .why-item-header {
        flex-wrap: wrap;
    }

    .why-item-header h3 {
        font-size: 20px;
    }

    .testimonials-slider {
        padding: 0 20px;
    }

    .testimonial {
        padding: 20px;
    }

    .testimonial p {
        font-size: 14px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item {
        flex-direction: column !important;
        gap: 20px;
    }

    .service-detail-item:nth-child(even) {
        flex-direction: column !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .content-wrapper h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo img {
        height: 50px;
    }

    .logo .company-name {
        font-size: 14px;
    }

    .logo .company-since {
        font-size: 10px;
    }

    .iso-logo {
        height: 40px;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
    }

    .top-nav {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .quote-btn {
        width: 100%;
    }

    .slider-container {
        height: 300px;
    }

    .slider-controls {
        bottom: 10px;
    }

    .quick-actions-overlay {
        top: 50%;
        transform: translateY(-50%);
    }

    .action-box {
        padding: 15px;
        min-width: auto;
        flex-direction: column;
    }

    .track-form {
        gap: 8px;
    }

    .track-form input,
    .track-form button {
        padding: 8px;
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .service-image-wrapper h3 {
        font-size: 16px;
        padding: 8px 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .why-item-header img {
        width: 24px;
    }

    .why-item-header h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }

    .testimonial {
        padding: 15px;
    }

    .testimonial p {
        font-size: 13px;
    }

    .testimonial-controls button {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 14px;
    }

    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .content-wrapper h2 {
        font-size: 20px;
    }

    .content-wrapper p,
    .content-wrapper li {
        font-size: 14px;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .quote-form input,
    .quote-form textarea {
        padding: 10px;
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .service-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .service-image-wrapper h3 {
        font-size: 14px;
        padding: 6px 8px;
    }

    .section-title {
        font-size: 20px;
    }

    .why-item-header h3 {
        font-size: 16px;
    }

    .testimonial p {
        font-size: 12px;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .content-wrapper h2 {
        font-size: 18px;
    }
}
