/* ===========================================
   Fatema Trade Center - Responsive Styles
   =========================================== */
   
   
/* Mobile Header */
.customMobileHeader {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #eee;
    display:  none;
}

.customMobileHeader-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #273250;
}

.customMobileHeader-logo img {
    height: 42px;
}
.customMobileMenuList li a {
    text-decoration: none !important;
}

/* Hamburger */
.customMobileHeader-toggle {
    width: 28px;
    cursor: pointer;
}

.customMenuBar {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Sidebar Nav */
.customMobileHeader-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 6px rgba(0,0,0,0.2);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9999;
    padding-top: 60px;
}

.customMobileHeader-nav.active {
    right: 0;
    padding-top: 0;
}
.customMobileHeader-logo {
    background: #273250;
    padding: 10px;
}

/* Overlay */
.customMobileHeader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 9998;
}

/* Mobile menu list */
.customMobileMenuList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.customMobileMenuList li {
    border-bottom: 1px solid #f4f4f4;
}

.customNavLink,
.customDropdownItem {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
}

/* Submenu */
.customDropdownMenu,
.customSubmenuContent {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.customMenuPlus {
    cursor: pointer;
    font-weight: bold;
}

.customDropdownMenu,
.customSubmenuContent,
.customSubmenuContentLevel4 {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.customDropdownSubmenuLevel4 > a {
    padding-left: 30px; /* indent 4th level */
}

.customSubmenuContentLevel4 li a {
    padding-left: 45px; /* further indent for grandchildren */
}
   

/* Container Responsive Fixes */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Section margin adjustments for smaller screens */
    .about-section,
    .products-section,
    .news-section {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
  .customMobileHeader {
    display: block;
}
        .container {
        padding: 0 15px;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    .languagePart.mobileLang {
        display: none;
    }
    
    .topbar {
        display: none;
    }
    .site-header {
        display: none;
    }
    
    /* Section margin adjustments for tablets */
    .about-section,
    .products-section,
    .news-section {
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .container-fluid {
        padding: 0 5px;
    }
    
    /* Section margin adjustments for mobile */
    .about-section,
    .products-section,
    .news-section {
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablet Styles */
@media (max-width: 991.98px) {
    .main-navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .main-navbar.scrolled {
        padding: 8px 0;
    }
    
    /* Logo responsive sizing */
    .logo {
        height: 50px;
    }
    
    .main-navbar.scrolled .logo {
        height: 35px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 12px 20px !important;
        border-radius: 8px;
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        transform: none;
        background: rgba(255, 235, 59, 0.2);
        color: #FFEB3B !important;
    }
    
    .dropdown-menu {
        margin-top: 5px;
        border-radius: 8px;
    }
    
    .dropdown-item {
        margin: 1px 5px;
        padding: 10px 20px;
    }
    
    /* Carousel Mobile */
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    /* Play/Pause button for tablet */
    .carousel-play-pause {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
        font-size: 1.1rem;
    }
    
    /* Hero buttons for tablet */
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .hero-btn {
        margin-right: 15px;
        margin-bottom: 10px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .top-bar-contact {
        font-size: 0.8rem;
    }
    
    /* Top bar mobile layout */
    .top-bar .row {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left {
        justify-content: center;
        text-align: center;
    }
    
    .top-bar-right {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 6px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* Logo mobile sizing */
    .logo {
        height: 45px;
    }
    
    .main-navbar.scrolled .logo {
        height: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: left;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
        text-align: left;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .hero-btn {
        width: 100%;
        max-width: 250px;
        margin-right: 0;
    }
    
    /* Top bar small mobile */
    .top-bar-text {
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    /* Logo small mobile sizing */
    .logo {
        height: 40px;
    }
    
    .main-navbar.scrolled .logo {
        height: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Carousel Mobile Small */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
    
    /* Play/Pause button for mobile */
    .carousel-play-pause {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        font-size: 1rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Extra Large Desktop Styles */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 1200px) {
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 35px;
    }
}

@media (max-width: 992px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .contact-info-header h3,
    .contact-form-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 12px 18px;
    }
    
    .btn-primary {
        padding: 12px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .contact-underline {
        width: 60px;
        height: 3px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-info-header h3,
    .contact-form-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-info-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 15px;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .map-header h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-badge {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .contact-underline {
        width: 50px;
        height: 3px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-info-header h3,
    .contact-form-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-info-item {
        padding: 10px;
        margin-bottom: 14px;
        flex-direction: row;
        text-align: left;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-control {
        padding: 5px 12px;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .map-header h3 {
        font-size: 1.2rem;
    }
    
    .map-header p {
        font-size: 0.9rem;
    }
}

/* About Us Page Responsive */
@media (max-width: 1200px) {
    .page-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-intro-content {
        padding-right: 30px;
    }
    
    .supply-content {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-intro-image {
        height: 400px;
    }
    
    .supply-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .partner-card {
        padding: 25px 15px;
    }
    
    .strength-card {
        padding: 25px;
    }
    
    .coming-soon-card {
        padding: 40px 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .page-underline {
        width: 80px;
        height: 3px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 15px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .about-intro-image {
        height: 350px;
    }
    
    .image-container {
        border-radius: 15px;
        border: 2px solid #ffffff;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .about-intro-image .stat-bubble {
        padding: 4px 6px;
        gap: 3px;
        max-width: 70px;
        min-width: 50px;
    }
    
    .about-intro-image .stat-icon {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .partner-card {
        padding: 20px 15px;
    }
    
    .partner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .partner-card h4 {
        font-size: 0.9rem;
    }
    
    .supply-item {
        padding: 15px;
        gap: 15px;
    }
    
    .supply-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .supply-text h4 {
        font-size: 1rem;
    }
    
    .supply-text p {
        font-size: 0.9rem;
    }
    
    .strength-card {
        padding: 20px;
    }
    
    .strength-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .strength-content h4 {
        font-size: 1.1rem;
    }
    
    .strength-content p {
        font-size: 0.95rem;
    }
    
    .coming-soon-card {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.6rem;
    }
    
    .coming-soon-card p {
        font-size: 1rem;
    }
    
    .progress-indicator {
        width: 150px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-card .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    .page-badge {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .page-underline {
        width: 60px;
        height: 3px;
    }
    
    .breadcrumb {
        padding: 8px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 12px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
    
    .about-intro-image {
        height: 300px;
    }
    
    .image-container {
        border-radius: 12px;
        border: 2px solid #ffffff;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
    
    .about-intro-image .stat-bubble {
        padding: 3px 5px;
        gap: 2px;
        max-width: 60px;
        min-width: 40px;
    }
    
    .about-intro-image .stat-icon {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .main-description {
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .partner-card h4 {
        font-size: 0.85rem;
    }
    
    .supply-item {
        padding: 12px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .supply-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .supply-text h4 {
        font-size: 0.95rem;
    }
    
    .supply-text p {
        font-size: 0.85rem;
    }
    
    .strength-card {
        padding: 15px;
    }
    
    .strength-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .strength-content h4 {
        font-size: 1rem;
    }
    
    .strength-content p {
        font-size: 0.9rem;
    }
    
    .coming-soon-card {
        padding: 25px 15px;
    }
    
    .coming-soon-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.4rem;
    }
    
    .coming-soon-card p {
        font-size: 0.95rem;
    }
    
    .progress-indicator {
        width: 120px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.8rem;
    }
}

/* About Section - Compressed Professional Style Responsive */
@media (max-width: 1200px) {
    .content-title {
        font-size: 2.2rem;
    }
    
    .about-content-compressed {
        padding-left: 30px;
    }
    
    .about-image-wrapper {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .content-title {
        font-size: 2rem;
    }
    
    .about-content-compressed {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .features-compressed {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-compressed {
        padding: 15px;
    }
    
    .bottom-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-image-wrapper {
        height: 400px;
    }
    
    .about-intro-image .stat-bubble {
        padding: 3px 4px;
        gap: 2px;
        max-width: 50px;
        min-width: 35px;
    }
    
    .about-intro-image .stat-1 {
        transform: rotate(-3deg);
        --rotation: -3deg;
    }
    
    .about-intro-image .stat-2 {
        bottom: 15px;
        left: 20px;
        transform: rotate(2deg);
        --rotation: 2deg;
    }
    
    .stat-3 {
        transform: rotate(-1deg);
        --rotation: -1deg;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .content-title {
        font-size: 1.8rem;
    }
    
    .main-description p {
        font-size: 1rem;
    }
    
    .feature-compressed {
        padding: 12px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .bottom-stats {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-image-wrapper {
        height: 350px;
    }
    
    .image-container {
        border-radius: 15px;
        border: 2px solid #ffffff;
    }
    
    .overlay-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .about-intro-image .stat-bubble {
        padding: 2px 3px;
        gap: 1px;
        max-width: 45px;
        min-width: 30px;
    }
    
    .about-intro-image .stat-1 {
        transform: rotate(-2deg);
        --rotation: -2deg;
    }
    
    .about-intro-image .stat-2 {
        bottom: 15px;
        left: 15px;
        transform: rotate(1deg);
        --rotation: 1deg;
    }
    
    .stat-3 {
        transform: rotate(-1deg);
        --rotation: -1deg;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .content-title {
        font-size: 1.5rem;
    }
    
    .header-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .title-underline {
        width: 40px;
        height: 3px;
        margin: 10px auto;
        display: block;  
    }
    
    .main-description p {
        font-size: 0.95rem;
    }
    
    .feature-compressed {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
    
    .bottom-stats {
        padding: 15px;
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about-image-wrapper {
        height: 300px;
    }
    
    .image-container {
        border-radius: 12px;
        border: 2px solid #ffffff;
    }
    
    .overlay-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .about-intro-image .stat-bubble {
        padding: 2px 3px;
        gap: 1px;
        max-width: 40px;
        min-width: 25px;
    }
    
    .about-intro-image .stat-1 {
        transform: rotate(-1deg);
        --rotation: -1deg;
    }
    
    .about-intro-image .stat-2 {
        bottom: 15px;
        left: 10px;
        transform: rotate(1deg);
        --rotation: 1deg;
    }
    
    .stat-3 {
        transform: rotate(-0.5deg);
        --rotation: -0.5deg;
    }
    
    .stat-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
}

@media (max-width: 992px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .content-block {
        padding: 30px;
    }
    
    .content-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .content-icon {
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .about-image-container {
        height: 500px;
    }
    
    .float-item {
        padding: 15px 20px;
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px;
    }
    
    .stat-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .content-title h3 {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .stats-row {
        padding: 25px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .about-image-container {
        height: 400px;
    }
    
    .image-wrapper {
        border-radius: 20px;
        border: 3px solid #ffffff;
    }
    
    .overlay-content {
        padding: 25px;
    }
    
    .overlay-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .overlay-stat .stat-number {
        font-size: 2rem;
    }
    
    .float-item {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .float-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .float-title {
        font-size: 0.9rem;
    }
    
    .float-desc {
        font-size: 0.7rem;
    }
    
    .professional-stats {
        padding: 30px;
    }
    
    .stats-header h3 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-card-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .header-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .about-bottom {
        margin-top: 100px;
    }
    
    .divider-line {
        width: 50px;
        height: 3px;
    }
    
    .title-divider i {
        font-size: 1.2rem;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .content-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .content-title h3 {
        font-size: 1.3rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .stats-row {
        padding: 20px;
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-image-container {
        height: 350px;
    }
    
    .image-wrapper {
        border-radius: 15px;
        border: 2px solid #ffffff;
    }
    
    .overlay-content {
        padding: 20px;
    }
    
    .overlay-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .overlay-content h3 {
        font-size: 1.5rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .overlay-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .overlay-stat .stat-text {
        font-size: 0.9rem;
    }
    
    .float-item {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .float-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .float-title {
        font-size: 0.8rem;
    }
    
    .float-desc {
        font-size: 0.6rem;
    }
    
    .professional-stats {
        padding: 20px;
    }
    
    .stats-header h3 {
        font-size: 1.5rem;
    }
    
    .stats-header p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-card-number {
        font-size: 2rem;
    }
    
    .stat-card-label {
        font-size: 0.9rem;
    }
}
    
}

/* About Section Buttons Responsive */
@media (max-width: 768px) {
    .about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-buttons .btn {
        width: 200px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-buttons .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Service & Support Section Buttons Responsive */
@media (max-width: 768px) {
    .service-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    .product-card .card-title {
        min-height: unset;
    }
    
    .service-buttons .btn {
        width: 200px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}



/* Service & Support Section - New Layout Design Responsive */
@media (max-width: 1200px) {
    .service-title {
        font-size: 2.8rem;
    }
    
    .service-intro {
        font-size: 1.2rem;
    }
    
    .service-image-wrapper {
        height: 380px;
        margin-bottom: 30px;
    }
    
    .overlay-content i {
        font-size: 4rem;
    }
    
    .overlay-content h3 {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .service-content-section {
        padding: 15px;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-image-wrapper {
        height: 350px;
    }
    
    .overlay-content i {
        font-size: 3.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card-icon i {
        font-size: 1.3rem;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 20px 20px 20px 0;
        min-height: auto;
    }
    
    .service-image-container {
        min-height: auto;
    }
    
    .service-description-bottom {
        margin-top: 0;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .service-image-wrapper {
        height: 320px;
        margin-bottom: 20px;
    }
    
    .overlay-content i {
        font-size: 3rem;
    }
    
    .overlay-content h3 {
        font-size: 1.6rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 12px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
    }
    
    .highlight-icon i {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 15px 15px 15px 0;
        min-height: auto;
    }
    
    .service-image-container {
        min-height: auto;
    }
    
    .service-description-bottom {
        margin-top: 0;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-intro {
        font-size: 0.95rem;
    }
    
    .service-image-wrapper {
        height: 280px;
        margin-bottom: 0px;
    }
    
    .overlay-content i {
        font-size: 2.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
    
    .highlight-item {
        padding: 10px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
    }
    
    .highlight-icon i {
        font-size: 1rem;
    }
    
    .highlight-text {
        font-size: 0.9rem;
    }
    
    .service-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    /* Products Section Responsive Styles */
    .products-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .products-title {
        font-size: 2.2rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .product-categories {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .category-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .tab-icon {
        width: 30px;
        height: 30px;
    }
    
    .tab-icon i {
        font-size: 1rem;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-card .card-body {
        padding: 20px;
    }
    
    .product-card .card-title {
        font-size: 1.2rem;
    }
    
    .view-more-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Products Section Small Mobile */
    .products-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 0.9rem;
    }
    
    .product-categories {
        gap: 10px;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        padding: 10px 15px;
        font-size: 0.85rem;
        width: 200px;
        justify-content: center;
    }
    
    .tab-icon {
        width: 25px;
        height: 25px;
    }
    
    .tab-icon i {
        font-size: 0.9rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-card .card-body {
        padding: 15px;
    }
    
    .product-card .card-title {
        font-size: 1.1rem;
    }
    
    .product-card .card-text {
        font-size: 0.9rem;
    }
    
    .view-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }
    
    /* Products Grid Responsive */
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-lg-4 {
        flex: 0 0 %;
        max-width: 100%;
    }
    
    .col-2md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* News Section Responsive Styles */
    .news-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .news-title {
        font-size: 2.2rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-image-container {
        height: 180px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-headline {
        font-size: 1.2rem;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
    }
    
    .view-all-news-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* News Section Small Mobile */
    .news-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .news-title {
        font-size: 1.8rem;
    }
    
    .news-subtitle {
        font-size: 0.9rem;
    }
    
    .news-image-container {
        height: 160px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-headline {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .view-all-news-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }
}

/* Extra Large Desktop - 4 cards per row */
@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
        
    }
}

/* Large Desktop - 3 cards per row */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        
    }
}

/* Tablet - 2 cards per row */
@media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 50px !important;
    }
}

/* Repeat Business Section Responsive */
@media (max-width: 1200px) {
    .repeat-business-content .main-description {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .repeat-business-content {
        padding: 40px 0;
    }
    
    .repeat-business-content .main-description {
        font-size: 0.95rem;
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .repeat-business-content {
        padding: 30px 0;
    }
    
    .repeat-business-content .main-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .repeat-business-content {
        padding: 25px 0;
    }
    
    .repeat-business-content .main-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-top: 15px;
    }
}

}

/* Container Responsive Fixes */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }

/* Service & Support Section - New Layout Design Responsive Updates */


/* Service & Support Section - Enhanced Design Responsive */
@media (max-width: 1200px) {
    .service-title {
        font-size: 2.8rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-image-wrapper {
        height: 380px;
    }
    
    .overlay-content i {
        font-size: 4rem;
    }
    
    .overlay-content h3 {
        font-size: 2rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .service-content-section {
        padding: 15px;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-image-wrapper {
        height: 350px;
    }
    
    .overlay-content i {
        font-size: 3.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.8rem;
    }
    
    .overlay-content p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card-icon i {
        font-size: 1.3rem;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .service-content-section {
        padding: 10px;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-subtitle {
        font-size: 0.95rem;
    }
    
    .service-image-wrapper {
        height: 320px;
    }
    
    .overlay-content i {
        font-size: 3rem;
    }
    
    .overlay-content h3 {
        font-size: 1.6rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-card-icon i {
        font-size: 1.2rem;
    }
    
    .service-card-content h3 {
        font-size: 1.1rem;
    }
    
    .service-card-content p {
        font-size: 0.9rem;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-content-section {
        padding: 5px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .service-image-wrapper {
        height: 280px;
    }
    
    .overlay-content i {
        font-size: 2.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-card-icon i {
        font-size: 1.1rem;
    }
    
    .service-card-content h3 {
        font-size: 1rem;
    }
    
    .service-card-content p {
        font-size: 0.85rem;
    }
    
    .service-buttons .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}


/* Service & Support Section - New Layout Responsive */
@media (max-width: 1200px) {
    .service-content-section {
        padding: 20px 15px 20px 0;
    }
    
    .service-image-section {
        padding: 20px 0 20px 15px;
    }
    
    .service-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .service-content-section {
        padding: 15px 10px 15px 0;
    }
    
    .service-image-section {
        padding: 15px 0 15px 10px;
        min-height: auto;
    }
    
    .service-image-container {
        min-height: auto;
    }
    
    .service-image-wrapper {
        height: 300px;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .service-content-section {
        padding: 10px 5px 10px 0;
    }
    
    .service-image-section {
        padding: 10px 0 10px 5px;
    }
    
    .service-image-wrapper {
        height: 280px;
    }
    
    .service-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .service-content-section {
        padding: 5px 0 5px 0;
    }
    
    .service-image-section {
        padding: 5px 0 5px 0;
    }
    
    .service-image-wrapper {
        height: 250px;
    }
    
    .service-buttons .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}


/* Service Cards List Layout Responsive */
@media (max-width: 992px) {
    .service-cards-grid {
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
        min-height: 100px;
        gap: 15px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card-icon i {
        font-size: 1.3rem;
    }
    
    .service-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 18px;
        min-height: 90px;
        gap: 12px;
    }
    
    .service-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-card-icon i {
        font-size: 1.2rem;
    }
    
    .service-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .service-card-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 15px;
        min-height: 80px;
        gap: 10px;
    }
    
    .service-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-card-icon i {
        font-size: 1.1rem;
    }
    
    .service-card-content h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .service-card-content p {
        font-size: 0.85rem;
    }
}


/* Service Image 600x600 Responsive */
@media (max-width: 1200px) {
    .service-image-wrapper {
        height: 550px;
    }
    
    .service-image-section {
        min-height: 650px;
    }
    
    .service-image-container {
        min-height: 550px;
    }
}

@media (max-width: 992px) {
    .service-image-wrapper {
        height: 500px;
    }
    
    .service-image-section {
        min-height: 600px;
    }
    
    .service-image-container {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .service-image-wrapper {
        height: 450px;
    }
    
    .service-image-section {
        min-height: 550px;
    }
    
    .service-image-container {
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .service-image-wrapper {
        height: 400px;
    }
    
    .service-image-section {
        min-height: 500px;
    }
    
    .service-image-container {
        min-height: 400px;
    }
}


/* About Us Page Cards Responsive */
@media (max-width: 992px) {
    .feature-item {
        padding: 12px;
        gap: 10px;
        min-height: 60px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 10px;
        gap: 8px;
        min-height: 55px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .feature-text p {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 8px;
        gap: 6px;
        min-height: 50px;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .feature-text h4 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .feature-text p {
        font-size: 0.65rem;
    }
}


/* What We Do Section Cards Responsive */
@media (max-width: 992px) {
    .service-item {
        padding: 12px;
        gap: 10px;
        min-height: 60px;
        margin-bottom: 12px;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-content h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .service-content p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .service-item {
        padding: 10px;
        gap: 8px;
        min-height: 55px;
        margin-bottom: 10px;
    }
    
    .service-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .service-content h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .service-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .service-item {
        padding: 8px;
        gap: 6px;
        min-height: 50px;
        margin-bottom: 8px;
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .service-content h4 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .service-content p {
        font-size: 0.65rem;
    }
}


/* What We Do Section Overflow Fix */
@media (max-width: 992px) {
    .what-we-do-content {
        padding: 25px;
    }
    
    .main-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .what-we-do-content {
        padding: 20px;
    }
    
    .main-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .what-we-do-content {
        padding: 15px;
    }
    
    .main-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
}


/* What We Do Section - New Design Responsive */
@media (max-width: 992px) {
    .card-header {
        padding: 25px 25px 15px 25px;
        gap: 15px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 1.8rem;
    }
    
    .header-content h3 {
        font-size: 1.6rem;
    }
    
    .header-content p {
        font-size: 0.95rem;
    }
    
    .card-body {
        padding: 25px;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .key-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .point-item {
        padding: 15px;
        min-height: 70px;
    }
    
    .point-icon {
        width: 45px;
        height: 45px;
    }
    
    .point-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .card-header {
        padding: 20px 20px 15px 20px;
        gap: 12px;
    }
    
    .header-icon {
        width: 55px;
        height: 55px;
    }
    
    .header-icon i {
        font-size: 1.6rem;
    }
    
    .header-content h3 {
        font-size: 1.4rem;
    }
    
    .header-content p {
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .content-text p {
        font-size: 0.95rem;
    }
    
    .point-item {
        padding: 12px;
        min-height: 65px;
        gap: 12px;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
    }
    
    .point-icon i {
        font-size: 1.1rem;
    }
    
    .point-text h4 {
        font-size: 0.95rem;
    }
    
    .point-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .card-header {
        padding: 15px 15px 12px 15px;
        gap: 10px;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
    
    .header-icon i {
        font-size: 1.4rem;
    }
    
    .header-content h3 {
        font-size: 1.2rem;
    }
    
    .header-content p {
        font-size: 0.85rem;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
    
    .point-item {
        padding: 10px;
        min-height: 60px;
        gap: 10px;
    }
    
    .point-icon {
        width: 35px;
        height: 35px;
    }
    
    .point-icon i {
        font-size: 1rem;
    }
    
    .point-text h4 {
        font-size: 0.9rem;
    }
    
    .point-text p {
        font-size: 0.8rem;
    }
}

