/* services.css - Complete and Enhanced Styles */
:root {
    --primary-color: #ff007f;
    --secondary-color: #7928ca;
    --accent-color: #25D366;
    --text-color: #fff;
    --dark-bg: #180c0c;
    --light-bg: #161616;
    --font-main: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}
/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: MS Mincho;
    background: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: rgba(17, 17, 17, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.navbar-logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.navbar-logo img:hover {
    transform: scale(1.05);
}
#menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-right: 2em;
}
#menu li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}
#menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
#menu li a:hover::after {
    width: 100%;
}
/* ---- HOVER EFFECTS ---- */
/* 1. Home Link - Bounce Effect */
li a[href="index.html"]:hover {
    color: #FF6B6B;
  }
  
  li a[href="index.html"]:hover i {
    animation: bounce 0.8s ease infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  /* 2. Services Link - Gear Spin */
  li a[href="services.html"]:hover {
    color: #4ECDC4;
  }
  li a[href="services.html"]:hover i.fa-tools {
    animation: spin 1.5s linear infinite;
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  /* 4. About Link - Underline Grow */
  li a[href="about.html"] {
    overflow: hidden;
  }
  li a[href="about.html"]:hover {
    color: #FFD166;
  }
  /* 6. General Hover Lift Effect */
  li:not(:last-child) a:not(.active):not(.btn-lets-talk):hover {
    transform: translateY(-5px);
    color: #4ECDC4;
  }
/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    margin-right: 2em;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}
.hamburger div {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}
.hamburger.active div:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: var(--primary-color);
}
.hamburger.active div:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active div:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--primary-color);
}
/* Main Content */
main {
    padding-top: 80px;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(25, 25, 25, 0.9)), 
                url('https://images.stockcake.com/public/3/c/3/3c3f3379-0391-4e8e-a8b5-6769638f5e1a_large/modern-office-setup-stockcake.jpg') no-repeat center center/cover;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Grid Layout */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 4rem;
    width: 100%;
}


.service-column {
    background: var(--light-bg);
    padding: 1rem;
    width: 100%;
    border: 1px solid #fff;;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 600px) {
  .services {
    grid-template-columns: 1fr; /* Force one column only */
  }

  .service-column, .service-card .services1 .container1 .service-card1{
    width: 100% !important;
  }
}

.service-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-column i {
    font-size: 3rem;
    justify-items: center;
    margin-bottom: 1.5rem;
    display: block;
}

#icon { color: #cf0d0d; }
#icon2 { color: #def772; }
#icon1 { color: #2889d8; }

.service-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

/* Service Cards */
.service-card {
    background: rgba(30, 30, 30, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(40, 40, 40, 0.7);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-card p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-card strong {
    color: var(--primary-color);
}

.extra-info {
    display: none;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

/* Buttons */
.view-more, .book-now {
     padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: smaller;
}

.view-more {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.view-more:hover {
    background: var(--primary-color);
    color: white;
}

.book-now {
    background: var(--primary-color);
    color: white;
}

.book-now:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Additional Services Section */
.sub {
    text-align: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

.sub p {
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

#V1 { color: #007bff; }
#V2 { color: #ff0000; }
#V3 { color: #28a745; }

.sub p:hover {
    transform: scale(1.05);
}

.services1 {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.container1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    justify-content: center;  
    align-content: center;    
}
@media (min-width: 992px) and (max-width: 1200px) {
    .container1 {
        margin: 4rem !important;
    }
}
.service-card1 {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #007bff, #ff007f, #28a745) 1;
}

.service-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card1 p {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card1 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card1 p:not(:first-child) {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.button-container1 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn1 {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: smaller;
}

.btn-primary1 {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary1:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.btn-secondary1 {
    background: var(--primary-color);
    color: white;
}

.btn-secondary1:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.btn-success1 {
    background: #28a745;
    color: white;
}

.btn-success1:hover {
    background: #218838;
    transform: scale(1.05);
}

.btn-info {
    background: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
    transform: scale(1.05);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
    transform: scale(1.05);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    transform: scale(1.05);
}

/* Partners Section */
.partners-section {
    background: var(--light-bg);
    padding: 4rem 0;
    margin-top: 3rem;
}

.partners-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
}

.partners-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.5rem auto 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.partner-logo {
    width: 60px;
    height: 60;
    border-radius: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Upcoming Services Cards */
.outer-card {
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.outer-card h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.container2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card2 {
    perspective: 1000px;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card2:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-front {
    background: var(--light-bg);
    border: 2px solid var(--primary-color);
}

.card-back {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: rotateY(180deg);
}

.card-front i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-front h2 {
    margin-bottom: 1rem;
    color: white;
}

.card-front p {
    color: rgba(255, 255, 255, 0.8);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Popup Modal */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.popup-close {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--secondary-color);
}

/* Footer Styles */
.site-footer {
    background: var(--light-bg);
    color: white;
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-nav h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-nav ul, .footer-contact ul {
    list-style: none;
}

.footer-nav li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);

}
.button-container1{flex-direction: row;}
@media (max-width: 600px) {
  .callnow {
    flex-direction: row !important; /* enforce horizontal on small screens */
  }
}


@media (max-width: 1011px) {
    .services{
        grid-template-columns: 1fr;
    }
    .container1{
        grid-template-columns: repeat(3, 1fr);
    }
    
}
@media (max-width: 1024px) {
.container2 {
    grid-template-columns: repeat(2, 1fr);
}
  .services{
    grid-template-columns: repeat(1, 1fr);
    }
 .shipping{
    height: auto;
 }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .services {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .container1, .container2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    #menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    #menu.show {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .sub p {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services, .container1, .container2 {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    
    .hero h2 {
        font-size: 1.8rem;
    }

    .service-column h3 {
        font-size: 1.5rem;
    }

    .button-container1  .callnow{
        flex-direction: row;
    }

}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.service-card, .service-card1, .card2 {
    animation: hologram 1.2s ease-in-out forwards;
    position: relative;
    overflow: hidden;
}

@keyframes hologram {
    0% {
        opacity: 0;
        box-shadow: 0 0 0px rgba(0, 255, 255, 0);
        transform: translateY(20px);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.7),
                   0 0 40px rgba(0, 200, 255, 0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        transform: translateY(0);
    }
}
/* Main Shipping Section */
.shipping {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: 60vh;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
  }

  /* Content Container */
  .shipping__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }

  /* Logos Ring */
  .shipping__logos {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 2rem;
    z-index: 1;
  }

  .shipping__logos-ring {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
  }

  .shipping__logo {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .shipping__logo img {
    border-radius: 50%;
    width: 90%;
    height: auto;
  }

  /* Logo positions */
  .shipping__logo:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(2) { top: 15%; left: 85%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(4) { top: 85%; left: 85%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(6) { top: 85%; left: 15%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(7) { top: 50%; left: 0%; transform: translate(-50%, -50%); }
  .shipping__logo:nth-child(8) { top: 15%; left: 15%; transform: translate(-50%, -50%); }

  /* Content Area */
  .shipping__content {
    text-align: center;
    max-width: 600px;
    padding: 0 1rem;
  }

  .shipping__title {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(55, 196, 90);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .shipping__typing {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--secondary-blue);
    min-height: 60px;
    display: inline-block;
    width: 100%;
  }

  .shipping__description {
    font-size: 1rem;
    margin: 1.5rem 0;
    color: var(--primary-color);
  }

 .shipping__button {
    position: relative;
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid rgb(16, 180, 230);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    transition: all 0.4s ease;
}
.shipping__button {
    background: linear-gradient(90deg, 
        #00ff22 0%, 
        #4406ee 25%, 
        #ff0080 50%, 
        #ffec8b 75%, 
        #00aeff 100%);
    background-size: 400% 100%;
    animation: liquidWave 6s linear infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

@keyframes liquidWave {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}
.consult {
    border-radius: 50px;
    height:50px;
    width: 60px;
    align-items: center;
    text-align: center;
  
}
.CD{
     height:50px;
    width: 60px;
    align-items: center;
    text-align: center;
}
  /* Animation */
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Tablet Layout (600px - 1024px) */
  @media (min-width: 600px) {
    .shipping__container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 2rem;
    }

    .shipping__logos {
      width: 220px;
      height: 220px;
      margin-right: 2rem;
      margin-bottom: 0;
    }

    .shipping__logo {
      width: 60px;
      height: 60px;
    }

    .shipping__content {
      text-align: left;
      max-width: 50%;
    }

    .shipping__title {
      font-size: 2.25rem;
    }

    .shipping__typing {
      font-size: 1.4rem;
    }

    .shipping__description {
      font-size: 1.1rem;
    }
  }

  /* Desktop Layout (1024px+) */
  @media (min-width: 1024px) {
    .shipping__container {
      padding: 3rem;
    }

    .shipping__logos {
      width: 280px;
      height: 280px;
      margin-right: 3rem;
    }

    .shipping__logo {
      width: 70px;
      height: 70px;
    }

    .shipping__title {
      font-size: 2.5rem;
    }

    .shipping__typing {
      font-size: 1.5rem;
      min-height: 70px;
    }

    .shipping__description {
      font-size: 1.2rem;
      max-width: 90%;
    }

    .shipping__button {
      padding: 1rem 2rem;
      font-size: 1.1rem;
    }
  }

  /* Large Desktop (1440px+) */
  @media (min-width: 1440px) {
    .shipping__container {
      max-width: 1400px;
    }

    .shipping__logo {
      width: 80px;
      height: 80px;
    }
  }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card1:nth-child(1) { animation-delay: 0.1s; }
.service-card1:nth-child(2) { animation-delay: 0.2s; }
.service-card1:nth-child(3) { animation-delay: 0.3s; }
.service-card1:nth-child(4) { animation-delay: 0.4s; }
.service-card1:nth-child(5) { animation-delay: 0.5s; }
.service-card1:nth-child(6) { animation-delay: 0.6s; }
.card2:nth-child(1) { animation-delay: 0.1s; }
.card2:nth-child(2) { animation-delay: 0.2s; }
.card2:nth-child(3) { animation-delay: 0.3s; }
.card2:nth-child(4) { animation-delay: 0.4s; }

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Show hamburger menu on all tablets (768px-1024px) and mobile */
@media (max-width: 1024px) {
    /* Hide regular menu */
    .navbar ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }

    .navbar ul.active {
        left: 0;
    }
        
    }
    /* Adjust logo size for tablets */
    .navbar-logo img {
        height: 40px;
    }

/* Optional: Specific iPad Pro 12.9" landscape fix */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .navbar ul {
        gap: 1rem; /* Reduce gap between items */
    }
}