/* hero.css */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
*{
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Hero Carousel Styles */
.dt-hero-carousel {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dt-hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, transparent 20%, rgba(255,255,255,0.005) 21%, rgba(255,255,255,0.005) 34%, transparent 35%, transparent),
        linear-gradient(0deg, rgba(0,0,0,0.02), transparent 50%, rgba(0,0,0,0.02));
    pointer-events: none;
    z-index: 5;
    opacity: 0.15;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.35) 0%, rgba(34, 34, 34, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.carousel-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-title {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    color: white;
    letter-spacing: -0.5px;
}

.carousel-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.carousel-cta {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-cta:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.carousel-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-nav:hover::before {
    opacity: 1;
}

.carousel-nav:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.carousel-nav svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-nav:hover svg {
    transform: scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Dots Indicator */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.carousel-dot:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
    width: 32px;
    border-radius: 16px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-dot.active::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .carousel-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
    
    .carousel-content {
        padding: 0 15px;
    }
    
    .carousel-indicators {
        padding: 12px 18px;
        gap: 10px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .carousel-dot.active {
        width: 28px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-title {
        font-size: 1.5rem;
    }
    
    .carousel-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 30px;
        padding: 10px 16px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 24px;
        border-radius: 12px;
    }
}

.dt-hero {
    height: 80vh; /* Changed from 100vh to 80vh */
    min-height: 600px; /* Adding minimum height to ensure content fits */
    max-height: 800px; /* Adding maximum height for larger screens */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    font-family: system-ui, -apple-system, sans-serif;
}

.dt-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/traffic_landing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.dt-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: -1;
}


.dt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.dt-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 0 20px;
}

.dt-hero__title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.dt-hero__cta {
    display: inline-block;
    background-color: #2d81d4; /* Changed to blue */
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dt-hero__cta:hover {
    background-color: #0052a3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3); /* Blue-tinted shadow */
}

.dt-hero__cta:active {
    transform: translateY(0); /* Press effect */
    background-color: #004d99; /* Even darker blue when clicked */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .dt-hero__title {
        font-size: 36px;
    }
    
    .dt-nav__list {
        display: none; /* You might want to add a mobile menu handler */
    }
}

@media (max-width: 480px) {
    .dt-hero__title {
        font-size: 28px;
    }
    
    .dt-topbar__content {
        flex-direction: column;
        align-items: center;
    }
    
    .dt-topbar__contact {
        margin-bottom: 10px;
    }
}

.dt-services {
    padding: 80px 0;
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, sans-serif;
}

.dt-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dt-services__title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* .dt-services__underline {
    width: 50px;
    height: 3px;
    background-color: #0066cc;
    margin: 0 auto 50px;
} */

.dt-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dt-service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dt-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dt-service-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.dt-service-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    flex-shrink: 0;
}

.dt-service-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.dt-service-card__divider {
    height: 1px;
    background: #e0e0e0;
    margin: 15px 0;
    width: 100%;
}

/* Our Coverage Section Styles */
.dt-coverage {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.dt-coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
    pointer-events: none;
}

.dt-coverage__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.dt-coverage__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dt-coverage__title {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dt-coverage__underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    margin: 0 auto 30px;
    border-radius: 2px;
}

.dt-coverage__description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    font-weight: 300;
}

.dt-coverage__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.dt-coverage__feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dt-coverage__feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dt-coverage__feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    transition: all 0.3s ease;
}

.dt-coverage__feature:hover .dt-coverage__feature-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.dt-coverage__feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.dt-coverage__feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* Responsive styles for Coverage */
@media (max-width: 768px) {
    .dt-coverage {
        padding: 60px 0;
    }
    
    .dt-coverage__title {
        font-size: 28px;
    }
    
    .dt-coverage__description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .dt-coverage__features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .dt-coverage__feature {
        padding: 25px 15px;
    }
    
    .dt-coverage__feature-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .dt-coverage__title {
        font-size: 24px;
    }
    
    .dt-coverage__description {
        font-size: 15px;
    }
    
    .dt-coverage__feature h3 {
        font-size: 16px;
    }
    
    .dt-coverage__feature p {
        font-size: 13px;
    }
}

/* Leadership Section Styles */
.dt-leadership {
    padding: 80px 0;
    background: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
}

.dt-leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 77, 153, 0.05) 100%);
    pointer-events: none;
}

.dt-leadership__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.dt-leadership__title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.dt-leadership__underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #0052a3);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.dt-leadership__subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.dt-leadership__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Leadership Cards */
.dt-leadership-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.dt-leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0052a3);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.dt-leadership-card:hover::before {
    transform: scaleX(1);
}

.dt-leadership-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.dt-leadership-card__avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
    position: relative;
}

.dt-leadership-card__avatar::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dt-leadership-card__photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.dt-leadership-card:hover .dt-leadership-card__photo {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.dt-leadership-card:hover .dt-leadership-card__avatar {
    transform: scale(1.1);
}

.dt-leadership-card:hover .dt-leadership-card__avatar::after {
    opacity: 0.2;
}

.dt-leadership-card__initials {
    color: white;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.dt-leadership-card__content {
    text-align: center;
}

.dt-leadership-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.dt-leadership-card__role {
    font-size: 14px;
    font-weight: 500;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.dt-leadership-card__experience {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive styles for Leadership */
@media (max-width: 1024px) {
    .dt-leadership__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .dt-leadership {
        padding: 60px 0;
    }
    
    .dt-leadership__title {
        font-size: 28px;
    }
    
    .dt-leadership__subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .dt-leadership__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dt-leadership-card {
        padding: 25px 20px;
    }
    
    .dt-leadership-card__avatar {
        width: 70px;
        height: 70px;
    }
    
    .dt-leadership-card__initials {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .dt-leadership__title {
        font-size: 24px;
    }
    
    .dt-leadership-card {
        padding: 20px 15px;
    }
    
    .dt-leadership-card__name {
        font-size: 18px;
    }
    
    .dt-leadership-card__experience {
        font-size: 13px;
    }
}

.dt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0052a3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dt-service-card:hover::before {
    opacity: 1;
}

/* Services Overview Section */
.dt-services__overview {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.dt-services__overview-header {
    text-align: center;
    margin-bottom: 40px;
}

.dt-services__overview-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.dt-services__overview-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.dt-services__detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Detailed Service Cards */
.dt-service-detail-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #0066cc;
}

.dt-service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.dt-service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0052a3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dt-service-detail-card:hover::before {
    opacity: 1;
}

.dt-service-detail-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.dt-service-detail-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.dt-service-detail-card__title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.dt-service-detail-card__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #0066cc;
    margin-bottom: 15px;
}

.dt-service-detail-card__description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.dt-service-detail-card__features h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dt-service-detail-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dt-service-detail-card__features li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.dt-service-detail-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 12px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .dt-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dt-services__detailed-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .dt-services {
        padding: 60px 0;
    }
    
    .dt-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dt-services__title {
        font-size: 28px;
    }
    
    .dt-services__overview {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .dt-services__overview-title {
        font-size: 24px;
    }
    
    .dt-services__overview-subtitle {
        font-size: 15px;
    }
    
    .dt-service-detail-card {
        padding: 25px 20px;
    }
    
    .dt-service-detail-card__title {
        font-size: 20px;
    }
}

/* Specialized Survey Services Section */
.dt-specialized-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.dt-specialized-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
    pointer-events: none;
}

.dt-specialized-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.dt-specialized-services__title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dt-specialized-services__underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    margin: 0 auto 50px;
    border-radius: 2px;
}

.dt-specialized-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Specialized Service Cards */
.dt-specialized-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.dt-specialized-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.dt-specialized-card:hover::before {
    transform: scaleX(1);
}

.dt-specialized-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dt-specialized-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.dt-specialized-card__icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dt-specialized-card:hover .dt-specialized-card__icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.dt-specialized-card:hover .dt-specialized-card__icon::after {
    opacity: 1;
}

.dt-specialized-card__title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dt-specialized-card__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for Specialized Services */
@media (max-width: 1024px) {
    .dt-specialized-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dt-specialized-services {
        padding: 60px 0;
    }
    
    .dt-specialized-services__title {
        font-size: 28px;
    }
    
    .dt-specialized-services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dt-specialized-card {
        padding: 25px 20px;
    }
    
    .dt-specialized-card__icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .dt-specialized-services__title {
        font-size: 24px;
    }
    
    .dt-specialized-card {
        padding: 20px 15px;
    }
    
    .dt-specialized-card__title {
        font-size: 16px;
    }
    
    .dt-specialized-card__description {
        font-size: 13px;
    }
}


.mhc-footer {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #ffffff;
    padding: 5rem 0 0 0;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.mhc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,100 1000,0 1000,100"/></svg>');
    pointer-events: none;
}

.mhc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mhc-footer-brand h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mhc-footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mhc-social-links {
    display: flex;
    gap: 1rem;
}

.mhc-social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mhc-social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mhc-footer-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mhc-footer-links {
    list-style: none;
    padding: 0;
}

.mhc-footer-links li {
    margin-bottom: 0.75rem;
}

.mhc-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.mhc-footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.6));
    transition: width 0.3s ease;
}

.mhc-footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.mhc-footer-links a:hover::before {
    width: 100%;
}

.mhc-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mhc-contact-info svg {
    flex-shrink: 0;
    color: #ffffff;
}

.mhc-footer-bottom {
    margin-top: 5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.mhc-footer-bottom .mhc-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.mhc-footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.mhc-footer-legal {
    display: flex;
    gap: 2rem;
}

.mhc-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mhc-footer-legal a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.mhc-footer-legal a:hover {
    color: #ffffff;
}

.mhc-footer-legal a:hover::before {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mhc-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .mhc-footer {
        padding: 3rem 0 0 0;
    }

    .mhc-footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mhc-footer-bottom .mhc-footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .mhc-footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mhc-footer {
        padding: 2rem 0 0 0;
    }

    .mhc-footer-container {
        gap: 2rem;
    }

    .mhc-footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* General Contact Section Styling */
.mhc-contact-section {
    padding: 5vw 5%; /* Dynamic padding for better responsiveness */
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

.mhc-contact-container {
    max-width: 1200px; /* Ensures content doesn't stretch on large screens */
    margin: 0 auto;
    width: 100%;
}

/* Header Section */
.mhc-contact-header {
    text-align: center;
    margin-bottom: 4vw; /* Dynamic spacing */
}

.mhc-contact-header h2 {
    font-size: clamp(24px, 4vw, 36px); /* Responsive font size */
    color: #2d2d2d;
    margin-bottom: 16px;
}

.mhc-contact-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: #787878;
}

/* Grid Layout */
.mhc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Default for larger screens */
    gap: 2rem;
}

/* Contact Info Cards */
.mhc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mhc-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mhc-info-icon {
    background: #6BA4D1;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.mhc-info-content h3 {
    font-size: clamp(16px, 2vw, 18px);
    color: #2d2d2d;
    margin-bottom: 8px;
}

.mhc-info-content p {
    font-size: clamp(14px, 1.8vw, 16px);
    color: #787878;
    line-height: 1.6;
    word-break: break-word; /* Prevent overflow on long words */
}

/* Enhanced Contact Section Styles */
.mhc-company-name {
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mhc-info-card--large {
    grid-column: 1 / -1; /* Span full width on mobile */
}

.mhc-info-content a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mhc-info-content a:hover {
    color: #004d99;
    text-decoration: underline;
}

.mhc-info-card--large .mhc-info-icon {
    background: linear-gradient(135deg, #0066cc, #004d99);
    width: 50px;
    height: 50px;
}

.mhc-info-card--large .mhc-info-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.mhc-info-card--large {
    border-left: 4px solid #0066cc;
    position: relative;
    overflow: hidden;
}

.mhc-info-card--large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #004d99);
}

.mhc-info-card--accent {
    border-left: 4px solid #0066cc;
    position: relative;
    overflow: hidden;
}

.mhc-info-card--accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #004d99);
}

.mhc-info-card--accent .mhc-info-icon {
    background: linear-gradient(135deg, #0066cc, #004d99);
}

@media (max-width: 768px) {
    .mhc-contact-grid {
        gap: 1.5rem;
    }
    
    .mhc-info-card--large {
        grid-column: unset;
    }
    
    .mhc-company-name {
        font-size: 15px;
    }
}

/* Form Container */
.mhc-contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Form Fields */
.mhc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Add spacing between form elements */
}

.mhc-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 1rem;
}

.mhc-form-group {
    display: flex;
    flex-direction: column;
}

.mhc-form-group label {
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.mhc-form-group input,
.mhc-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures no overflow */
    transition: all 0.3s ease;
}

.mhc-form-group textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

/* Input Focus Effect */
.mhc-form-group input:focus,
.mhc-form-group textarea:focus {
    border-color: #6BA4D1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 164, 209, 0.1);
}

/* Submit Button */
.mhc-submit-btn {
    background: #6BA4D1;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mhc-submit-btn:hover {
    background: #5890bd;
    transform: translateY(-2px);
}

.mhc-submit-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.mhc-submit-btn .btn-loader svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.form-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.form-status.show {
    display: block !important;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .mhc-contact-grid {
        grid-template-columns: 1fr; /* Stack on tablets */
    }

    .mhc-contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mhc-contact-header {
        margin-bottom: 2rem; /* Reduce spacing */
    }

    .mhc-contact-form-container {
        padding: 1rem;
    }

    .mhc-info-card {
        padding: 1rem; /* Smaller padding */
    }

    .mhc-submit-btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mhc-contact-section {
        padding: 2rem 1rem; /* Smaller padding */
    }

    .mhc-contact-header h2 {
        font-size: 22px; /* Smaller headings */
    }

    .mhc-info-card {
        flex-direction: column; /* Stack icon and content */
        align-items: flex-start;
    }

    .mhc-submit-btn {
        padding: 12px 16px;
    }
}

/* Mini HD Video Surveillance Section */
.surveillance-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
}

.surveillance-title {
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 600;
}

.surveillance-description {
    color: #787878;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.surveillance-subtext {
    color: #787878;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 450px));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: #787878;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .surveillance-section {
        padding: 50px 20px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .surveillance-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: minmax(250px, 450px);
        gap: 25px;
    }

    .surveillance-description,
    .surveillance-subtext {
        font-size: 15px;
    }

    .feature-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .surveillance-section {
        padding: 40px 15px;
    }

    .surveillance-title {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-image {
        height: 200px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }

    .surveillance-description,
    .surveillance-subtext {
        font-size: 14px;
    }
}
