  :root {
      --primary: #6c5ce7;
      --primary-dark: #5649c7;
      --secondary: #a29bfe;
      --accent: #00cec9;
       --dark: #2d3436;
      --light: #f5f6fa;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      --light-bg: rgba(30, 30, 30, 0.8);
      --primary-color: #6c5ce7;
      --secondary-color: #a29bfe;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      font-size: small;
      color: #fff;
      overflow-x: hidden;
      background-color: hsl(0, 12%, 66%);
      background-image: 
        radial-gradient(circle at 15% 50%, rgba(239, 238, 247, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(43, 46, 46, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(28, 18, 172, 0.1) 0%, transparent 25%);
    }
    
    /* Navigation */
    nav {
      position: fixed;
      top: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      z-index: 1000;
      width: auto;
      transition: all 0.4s ease;
    }
    
    nav.scrolled {
      top: 0.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
      display: flex;
      align-items: center;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-radius: 50px;
      padding: 0.8rem 2rem;
      border: none;
      transition: all 0.4s ease;
      position: relative;
      box-shadow: none;
    }

    /* Neon border implementation */
    .nav-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 50px;
      padding: 2px;
      background: linear-gradient(
        45deg,
        #ff00cc,
        #6c5ce7,
        #00cec9,
        #6c5ce7,
        #ff00cc
      );
      background-size: 400%;
      z-index: -1;
      -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0.8;
      animation: neon-border 8s linear infinite;
    }

    @keyframes neon-border {
      0% {
        background-position: 0 0;
      }
      50% {
        background-position: 400% 0;
      }
      100% {
        background-position: 0 0;
      }
    }

    .nav-container:hover::before {
      opacity: 1;
      box-shadow: 
        0 0 10px rgba(108, 92, 231, 0.8),
        0 0 20px rgba(0, 206, 201, 0.6);
    }
    
    .logo {
      font-weight: 700;
      font-size: 1.5rem;
      margin-right: 2rem;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }
    
    .logo:hover {
      transform: scale(1.05);
    }
    
    .logo img {
      width: 36px;
      height: 36px;
      margin-right: 0.8rem;
      border-radius: 50%;
    }
    
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--accent);
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: 0;
      left: 0;
      background: var(--gradient);
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
    }

    /* Mobile menu icons */
    .nav-links .mobile-icon {
      display: none;
      font-size: 1.2rem;
    }
    /* MAIN */
    main{
        margin: 6rem;
    }
    /* Font System for Headings */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif; /* Elegant display font */
  color: #222; /* Dark neutral color for readability */
  margin: 0.5em 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Large, responsive */
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.2px;
}

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.1px;
  color: #444; /* Slightly lighter for subheadings */
}
   .hero {
  background: linear-gradient(
                135deg, 
                rgba(33, 4, 112, 0.2), 
                rgba(7, 204, 50, 0.1)
              ),
              url('');
  background-size: cover;
  background-position: center;
  padding: 9rem 2rem 6rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
   }

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

    .hero p {
      color: yellow;
      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: 1.5rem;
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

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

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

    .service-column h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: rgb(11, 226, 22);
      position: relative;
      padding-bottom: 0.5rem;
      text-align: center;
      transition: color 0.3s ease;
    }

    .service-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: var(--primary-color);
    }
    .CD, .consult{
        height: 50px;
        width: 50px;
    }
    /* Service Cards */
    .service-card {
      background: rgba(40, 40, 40, 0.7);
      padding: 1.5rem;
      border-radius: 10px;
      margin-bottom: 1.5rem;
      border-left: 4px solid deeppink;
      transition: all 0.3s ease;
    }

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

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

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

    .service-card strong {
      color: deeppink;
    }

    /* 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;
      margin-right: 0.5rem;
      margin-top: 0.5rem;
    }

    .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: 4rem;
    }
     /*  EXTRA SERVICES, CONTENT SEC */
.container1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 2 columns */
  gap: 2rem;
}

#popup-title{
  font-size: 1.2rem;
    color: deeppink;
}
    .service-card1 {
      background: var(--light-bg);
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      border-image: linear-gradient(45deg,yellow, #ff007f, #28a745) 1;
    }

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

    .service-card1 p:first-child {
      font-size: 3rem;
      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;
      line-height: 1.5;
    }

    .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);
    }

    /* 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;
      font-size: 1.5rem;
    }

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

    .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;
    }

    /* NEW SHIPPING SECTION DESIGN */
    .shipping-section {
       background: linear-gradient(
  135deg,
  rgba(30, 30, 30, 0.6),  /* Dark side */
  rgba(45, 45, 45, 0.1)   /* Transparent/glassy side */
);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px); /* for Safari */
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 16px;

      padding: 4rem 2rem;
      margin: 4rem auto;
      max-width: 1200px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .shipping-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('https://thf.bing.com/th/id/OIP.SZ4cyKjtnnUfTev1P4dlpQHaE8?w=274&h=183&c=7&r=0&o=7&cb=thfc1&pid=1.7&rm=3') no-repeat center center/cover;
      opacity: 0.15;
      z-index: -1;
    }

    .shipping-content {
      text-align: left;
      max-width: 60%;
      padding-right: 2rem;
    }

    .shipping-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .shipping-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100px;
      height: 4px;
      border-radius: 2px;
    }

    .shipping-subtitle {
      font-size: 1.4rem;
      color: var(--accent);
      margin-bottom: 2rem;
      font-weight: 500;
    }

    .shipping-description {
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 3rem;
    }


    .shipping-button {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: var(--gradient);
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .shipping-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      transition: opacity 0.3s ease;
      opacity: 0;
    }

    .shipping-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
    }

    .shipping-button:hover::before {
      opacity: 1;
    }

    .shipping-button:active {
      transform: translateY(1px);
    }

    /* Shipping Logos Ring */
    .shipping-logos {
      position: relative;
      width: 280px;
      height: 280px;
      flex-shrink: 0;
    }
@media screen and (min-width: 1024px) {
  .shipping-logos-ring {
    margin-left: 2rem;
  }
}

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

    .shipping-logo {
      width: 60px;
      height: 60px;
      position: absolute;
      border-radius: 50%;
      background: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
    }

    .shipping-logo:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .shipping-logo img {
      border-radius: 50%;
      width: 80%;
      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%); }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 5rem 0 2rem;
      margin-top: 4rem;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .footer-logo {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      text-decoration: none;
    }
    
    .footer-logo img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 0.8rem;
    }
    
    .footer-about p {
      margin-bottom: 1.5rem;
      line-height: 1.6;
      opacity: 0.8;
    }
    
    .footer-social {
      display: flex;
      gap: 1rem;
    }
    
    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      text-decoration: none;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-links h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: white;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-links h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: var(--gradient);
      border-radius: 3px;
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.8rem;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }
    
    .footer-contact h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: white;
      position: relative;
      padding-bottom: 0.5rem;
    }
    
    .footer-contact h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: var(--gradient);
      border-radius: 3px;
    }
    
    .footer-contact p {
      margin-bottom: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      line-height: 1.6;
      opacity: 0.8;
    }
    
    .footer-contact i {
      color: var(--secondary);
      margin-top: 0.2rem;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

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

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

    .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; }

    /* Button container for horizontal alignment on mobile */
    .button-container {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 1rem;
    }

    /* Popup styles */
    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      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;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      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-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--primary-color);
      color: white;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .container2 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {
      .services {
        grid-template-columns: 1fr;
      }
      
      .container1, .container2 {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .hero {
        padding: 8rem 2rem 4rem;
      }
      
      .hero h2 {
        font-size: 2rem;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(30, 30, 30, 0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
      }
      
      .nav-links.active {
        transform: translateY(0);
      }
      
      .nav-links a {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      
      .nav-links a:hover {
        background: rgba(108, 92, 231, 0.1);
      }
      
      .nav-links .mobile-icon {
        display: inline-block;
        width: 24px;
        text-align: center;
      }

      .shipping-title {
        font-size: 2.2rem;
      }
      
      .shipping-subtitle {
        font-size: 1.2rem;
      }

      .shipping-section {
        flex-direction: column;
        text-align: center;
      }

      .shipping-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
      }

      .shipping-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px) {
      .hero h2 {
        font-size: 1.8rem;
      }

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

      .sub p {
        font-size: 1.5rem;
      }
      
      .container1, .container2 {
        grid-template-columns: 1fr;
      }
      
      .shipping-title {
        font-size: 1.8rem;
      }
      
      .shipping-subtitle {
        font-size: 1.1rem;
      }
      
      .shipping-description {
        font-size: 1rem;
      }

      .shipping-logos {
        width: 220px;
        height: 220px;
      }

      .shipping-logo {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 576px) {
      .services, .container1, .container2 {
        grid-template-columns: 1fr;
      }
      
      .hero {
        padding: 7rem 1rem 3rem;
      }
      
      .hero h2 {
        font-size: 1.6rem;
        margin-left: 110px;
      }

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

      .button-container1 {
        flex-direction: row;
        align-items: center;
      }
      
      .btn1 {
        width: auto;
        max-width: 200px;
      }
      
      .view-more, .book-now {
        width: auto;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      .shipping-section {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
      }
      
      .shipping-title {
        font-size: 1.6rem;
      }
      
      .shipping-subtitle {
        font-size: 1rem;
      }
      
      /* Ensure buttons stay horizontal on mobile */
      .button-container {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: center;
        padding-bottom: 0.5rem;
      }
      
      .button-container .view-more,
      .button-container .book-now {
        flex-shrink: 0;
      }

      .shipping-logos {
        width: 180px;
        height: 180px;
      }

      .shipping-logo {
        width: 40px;
        height: 40px;
      }
      main{
        margin: 0;
      }
    }