/* ======= DESKTOP (1280px – 1439px) ======= */
@media (min-width: 1280px) and (max-width: 1439px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 32px; }
  h4 { font-size: 26px; }
  h5 { font-size: 22px; }
  h6 { font-size: 18px; }
  p  { font-size: var(--font-md); }
}

/* ======= SMALL DESKTOP / LARGE TABLET (1024px – 1279px) ======= */
@media (min-width: 1024px) and (max-width: 1279px) {
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }
  h4 { font-size: 22px; }
  h5 { font-size: 18px; }
  h6 { font-size: 16px; }
  p  { font-size: 16px; }
}

/* ======= TABLET (768px – 1023px) ======= */
@media (min-width: 768px) and (max-width: 1023px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
  p  { font-size: var(--font-sm); }
}

/* ======= MOBILE (640px – 767px) ======= */
@media (min-width: 640px) and (max-width: 767px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
  p  { font-size: var(--font-sm); }
}

@media (max-width: 1024px) {
  .hero-content h1 { font-size: 42px; }
  .hero-content p { font-size: 18px; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 16px; }
}

/* ======= MAIN CONTENT RESPONSIVE STYLES ======= */

/* Hero Banner Responsive */
@media (max-width: 991px) {
  .hero-banner {
    height: auto;
    min-height: 60vh;
    padding: var(--space-2xl) 0;
  }
  .hero-banner .text {
    padding: 15px;
  }
  .hero-banner .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-banner .text h1,
  .hero-banner .text p {
    text-align: left;
  }
  
  .hero-banner .imgbox {
    margin: 0;
    width: 100%;
  }
  
  .hero-banner .imgbox img {
    /* max-height: 520px; */
    width: auto;
    object-fit: contain;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 50vh;
    padding: var(--space-xl) 0;
  }
  
  .hero-banner .text h1 {
    font-size: 28px;
    margin-bottom: var(--margin-sm);
  }
  
  .hero-banner .text p {
    font-size: 16px;
    margin-bottom: var(--margin-lg);
  }
  
  .hero-banner .imgbox img {
    max-height: 250px;
  }
}

@media (max-width: 575px) {
  .hero-banner {
    padding: 0 0 var(--space-lg) ;
  }
  
  .hero-banner .text h1 {
    font-size: 24px;
  }
  
  .hero-banner .text p {
    font-size: 14px;
  }
  
  .hero-banner .imgbox img {
    max-height: 290px;
  }
  .preforms-box .imgbox {
    max-height: 260px !important;
  }
}

/* About Us Section Responsive */
@media (max-width: 991px) {
  .tab-pane p {
    font-size: 16px;
  }
  .tab-pane li {
    font-size: 16px;
  }
  .aboutus-section {
    padding: var(--space-2xl) var(--space-lg);
  }
  .aboutus-section .text {
    margin-top: 42px;
  }

  .preforms-box .imgbox {
    max-height: 200px;
  }

  .get-in-touch-section .section-heading {
    justify-content: center;
  }
  
  .aboutus-section .row {
    flex-direction: column;
  }
  
  .aboutus-section .imgbox {
    margin-bottom: var(--space-xl);
  }
  
  .aboutus-section .imgbox .imgwrap {
    height: auto;
    max-height: 400px;
  }
  
  .aboutus-section .imgbox::before {
    right: -20px;
    bottom: -20px;
  }
}

@media (max-width: 767px) {
  .aboutus-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .aboutus-section .text h2 {
    font-size: 28px;
  }
  
  .aboutus-section .imgbox .imgwrap {
    max-height: 300px;
  }
  
  .aboutus-section .imgbox::before {
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 575px) {
  .aboutus-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .aboutus-section .text h2 {
    font-size: 24px;
  }
  
  .aboutus-section .imgbox .imgwrap {
    max-height: 250px;
  }
  
  .aboutus-section .imgbox::before {
    right: -10px;
    bottom: -10px;
  }
}

/* What Drives Us Section Responsive */
@media (max-width: 991px) {
  section[style*="background-color: #FFF7F4"] {
    padding: 40px 0;
  }
  
  section[style*="background-color: #FFF7F4"] h2 {
    font-size: 32px;
  }
  
  section[style*="background-color: #FFF7F4"] .row {
    margin: 0 -10px;
  }
  
  section[style*="background-color: #FFF7F4"] .col-md-6,
  section[style*="background-color: #FFF7F4"] .col-lg-3 {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  section[style*="background-color: #FFF7F4"] {
    padding: 30px 0;
  }
  
  section[style*="background-color: #FFF7F4"] h2 {
    font-size: 28px;
  }
  
  section[style*="background-color: #FFF7F4"] p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  section[style*="background-color: #FFF7F4"] .col-md-6 {
    margin-bottom: 20px;
  }
  
  section[style*="background-color: #FFF7F4"] .card {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  section[style*="background-color: #FFF7F4"] {
    padding: 20px 0;
  }
  
  section[style*="background-color: #FFF7F4"] h2 {
    font-size: 24px;
  }
  
  section[style*="background-color: #FFF7F4"] .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}

/* Our Journey Section Responsive */
@media (max-width: 991px) {
  .our-journey {
    padding: 40px 0;
  }
  
  .our-journey .row {
    flex-direction: column;
  }
  
  /* .our-journey .col-lg-6:first-child {
    margin-bottom: var(--space-xl);
  } */
  
  .our-journey .stats-box {
    margin-top: var(--space-lg);
  }
  
  .our-journey .stat-card {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .our-journey {
    padding: 30px 0;
  }
  
  .our-journey h2 {
    font-size: 28px;
  }
  
  .our-journey .lead {
    font-size: 16px;
  }
  
  .our-journey .stats-box {
    margin-top: var(--space-md);
  }
  
  .our-journey .stat-card {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .our-journey .stat-card i {
    font-size: 24px;
  }
  
  .our-journey .stat-card h5 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .our-journey {
    padding: 20px 0;
  }
  
  .our-journey h2 {
    font-size: 24px;
  }
  
  .our-journey .lead {
    font-size: 14px;
  }
  
  .our-journey .stats-box {
    margin-top: var(--space-sm);
  }
  
  .our-journey .col-6 {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Preforms Section Responsive */
@media (max-width: 991px) {
  .preforms-section {
    padding: 40px 0;
  }
  
  .preforms-section .title h2 {
    font-size: 32px;
  }
  
  .preforms-section .title h5 {
    font-size: 18px;
  }
  
  .preforms-section .row {
    margin: 0 -10px;
  }
  
  .preforms-section .col-lg-3,
  .preforms-section .col-md-4,
  .preforms-section .col-6 {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .preforms-section {
    padding: 30px 0;
  }
  
  .preforms-section .title h2 {
    font-size: 28px;
  }
  
  .preforms-section .title h5 {
    font-size: 16px;
  }
  
  .preforms-section .col-6 {
    width: 50%;
  }
  
  .preforms-box {
    padding: var(--space-sm);
  }
  
  .preforms-box h6 {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}

@media (max-width: 575px) {
  .preforms-section {
    padding: 20px 0;
  }
  
  .preforms-section .title h2 {
    font-size: 24px;
  }
  
  .preforms-section .title h5 {
    font-size: 14px;
  }
  
  .preforms-section .col-6 {
    width: 100%;
  }
  
  .preforms-section .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}

/* Get In Touch Section Responsive */
@media (max-width: 991px) {
  .get-in-touch-section {
    padding: 40px 0;
  }
  
  .get-in-touch-section .row {
    flex-direction: column;
    text-align: center;
  }
  
  .get-in-touch-section .col-lg-8 {
    margin-bottom: var(--space-lg);
  }
  
  .get-in-touch-section .col-lg-4 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .get-in-touch-section {
    padding: 30px 0;
  }
  
  .get-in-touch-section .section-heading {
    font-size: 28px;
  }
  
  .get-in-touch-section p {
    font-size: 14px;
  }
  
  .get-in-touch-section .custom-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .get-in-touch-section {
    padding: 20px 0;
  }
  
  .get-in-touch-section .section-heading {
    font-size: 24px;
    justify-content: center;
  }
  
  .get-in-touch-section .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}

/* Shop Section Responsive */
@media (max-width: 991px) {
  main {
    margin-top: 70px;
    overflow: hidden;
  }
  .logo-img {
    height: 180px;
  }
  .fixed-height {
    height: 400px;
  }
  .shop-sec {
    max-height: none;
    overflow: hidden;
  }
  .footer-section {
    overflow: hidden;
  }
  
  .shop-sec .row {
    flex-direction: column;
  }
  
  .shop-sec .col-lg-6:first-child {
    margin-bottom: var(--space-xl);
  }
  
  .shop-sec .text {
    padding: var(--space-md) var(--space-md);
  }
}

@media (max-width: 767px) {
  .shop-sec .text {
    padding: var(--space-md) var(--space-sm);
  }
  
  .shop-sec .text h2 {
    font-size: 28px;
  }
  
  .shop-sec .text p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .shop-sec .text {
    padding: var(--space-sm) 20px !important;
  }
  
  .shop-sec .text h2 {
    font-size: 24px;
  }
  
  .shop-sec .text p {
    font-size: 13px;
  }
}

/* Testimonials Section Responsive */
@media (max-width: 991px) {
  .testimonials-sec {
    padding: 40px 0;
  }
  
  .testimonials-sec .title h2 {
    font-size: 32px;
  }
  
  .testimonials-slide {
    padding: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .testimonials-sec {
    padding: 30px 0;
  }
  
  .testimonials-sec .title h2 {
    font-size: 28px;
  }
  
  .testimonials-sec .title .section-label {
    font-size: 12px;
  }
  
  .testimonials-slide {
    padding: var(--space-md);
  }
  
  .testimonials-slide p {
    font-size: 14px;
  }
  
  .testimonials-slide h6 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .testimonials-sec {
    padding: 40px 0;
  }
  
  .testimonials-sec .title h2 {
    font-size: 24px;
  }
  
  .testimonials-slide {
    padding: var(--space-sm);
  }
  
  .testimonials-slide p {
    font-size: 13px;
  }
  
  .testimonials-slide h6 {
    font-size: 14px;
  }
}

/* Certificates Section Responsive */
@media (max-width: 991px) {
  .ourcertificates-sec {
    padding: 40px 0;
  }
  
  .ourcertificates-sec .title h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .ourcertificates-sec {
    padding: 30px 0;
  }
  
  .ourcertificates-sec .title h2 {
    font-size: 28px;
  }
  
  .ourcertificates-sec .title .section-label {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .ourcertificates-sec {
    padding: 20px 0;
  }
  
  .ourcertificates-sec .title h2 {
    font-size: 24px;
  }
}

/* Clients Section Responsive */
@media (max-width: 991px) {
  .husky-section, .why-us {
    padding: 40px 0;
  }
  .why-image {
    flex: none;
  }
  .capable-section, .economical-section, .husky-section, .product-main {
    overflow: hidden;
  }
  .about-hero {
    background-position: center !important;
  }
  .our-clients-sec {
    padding: 40px 0;
  }
  
  .our-clients-sec .title h2 {
    font-size: 32px;
  }
  
  .our-clients-slide {
    padding: var(--space-sm);
  }
  
  .our-clients-slide img {
    max-height: 180px;
    width: auto;
  }
}

@media (max-width: 767px) {
  .our-clients-sec {
    padding: 30px 0;
  }
  
  .our-clients-sec .title h2 {
    font-size: 28px;
  }
  
  .our-clients-sec .title .section-label {
    font-size: 12px;
  }
  
  .our-clients-slide {
    padding: var(--space-xs);
  }
  
  .our-clients-slide img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .our-clients-sec {
    padding: 20px 0;
  }
  
  .our-clients-sec .title h2 {
    font-size: 24px;
  }
  
  .our-clients-slide img {
    max-height: 250px;
  }
}

/* General Section Responsive Improvements */
@media (max-width: 991px) {
  section {
    padding: var(--space-xl) 0;
  }
  
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

@media (max-width: 767px) {
  section {
    padding: var(--space-lg) 0;
  }
  
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .custom-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  section {
    padding: var(--space-md) 0;
  }
  
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .custom-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* ======= HEADER RESPONSIVE STYLES ======= */

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
  .header-wraper {
    height: 110px;
  }
  
  .logo {
    height: 80px;
  }
  
  header nav > ul {
    gap: 30px;
  }
  
  header nav > ul li a {
    font-size: 18px;
  }

}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .shop-sec .imgbox img, .shop-sec .imgbox {
    height: auto;
  }
  .preforms-box .imgbox {
    max-height: 172px;
  }
  .header-wraper {
    height: 90px;
  }
  
  .logo {
    height: 80px;
  }
  
  header nav > ul {
    gap: 18px;
  }
  
  header nav > ul li a {
    font-size: 15px;
  }
}

/* Large Tablet (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .logo-img {
    height: 260px;
  }
  .fixed-height {
    height: 390px;
  }
  main {
    margin-top: 85px;
  }
  .hero-banner {
    padding: 0;
    height: auto;
  }
  .preforms-box .imgbox {
    max-height: 152px;
  }
  .text-lg-end {
    display: flex; 
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .text-lg-end a.custom-btn {
    margin: 0 !important;
    width: 100%;
  }
  .shop-sec .imgbox img, .shop-sec .imgbox {
    height: auto;
  }
  .header-wraper {
    height: 85px;
  }
  
  .logo {
    height: 75px;
  }
  
  header nav > ul {
    gap: 15px;
  }
  
  header nav > ul li a {
    font-size: 14px;
  }
  
  .conteact-slide-btn {
    display: none;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .header-wraper {
    height: 80px;
  }

  footer .logo {
    height: 40px;
  }
  
  .logo {
    height: 70px;
  }
  
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .conteact-slide-btn {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  .header-wraper {
    height: 75px;
  }
  
  .logo {
    height: 65px;
  }
  
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .conteact-slide-btn {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-nav {
    padding: 15px;
  }
  
  .mobile-menu-footer {
    padding: 15px;
  }

  footer .logo {
    max-width: 50% !important;
  }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  .header-wraper {
    height: 70px;
  }
  
    
  footer .logo {
    max-width: 50% !important;
  }

  .logo {
    height: 60px;
  }
  
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .conteact-slide-btn {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu-header {
    padding: 12px;
  }
  
  .mobile-nav {
    padding: 12px;
  }
  
  .mobile-menu-footer {
    padding: 12px;
  }
  
  .mobile-nav a {
    font-size: 16px;
    padding: 14px 0;
  }
  
  .mobile-nav .submenu a {
    font-size: 14px;
    padding: 10px 0;
  }

  
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
  .header-wraper {
    height: 65px;
  }
  
  .logo {
    height: 55px;
  }
  
  .mobile-menu-header {
    padding: 10px;
  }
  
  .mobile-nav {
    padding: 10px;
  }
  
  .mobile-menu-footer {
    padding: 10px;
  }
  
  .mobile-nav a {
    font-size: 15px;
    padding: 12px 0;
  }
  
  .mobile-nav .submenu a {
    font-size: 13px;
    padding: 8px 0;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-menu {
    height: 100vh;
    overflow-y: auto;
  }
  
  .mobile-menu-header {
    padding: 10px 20px;
  }
  
  .mobile-nav {
    padding: 10px 20px;
  }
  
  .mobile-menu-footer {
    padding: 10px 20px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hamburger-btn span {
    border-radius: 1px;
  }
}

/* Print Styles */
@media print {
  header {
    position: static;
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .mobile-menu-toggle,
  .mobile-menu {
    display: none;
  }
}

