 /* Hide Translator on Mobile View - exactly as in template */
 @media (max-width: 767px) {
     #google_mobile {
         display: none !important;
         visibility: hidden !important;
         height: 0 !important;
         margin: 0 !important;
         padding: 0 !important;
         overflow: hidden !important;
     }

     #google_desktop {
         display: none !important;
         visibility: hidden !important;
     }

     #mainmenu li#google_mobile {
         display: none !important;
         list-style: none;
         margin: 0 !important;
         padding: 0 !important;
         height: 0 !important;
         line-height: 0 !important;
     }

     .goog-te-gadget,
     .goog-te-gadget-simple,
     .goog-te-banner-frame,
     .goog-te-menu-frame {
         display: none !important;
         visibility: hidden !important;
     }
 }

 .goog-te-banner-frame {
     display: none !important;
 }

 body {
     top: 0 !important;
 }

 /* WhatsApp floating button */
 .whatsapp-float {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background-color: #25d366;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     text-align: center;
     font-size: 30px;
     line-height: 60px;
     z-index: 100;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transition: all 0.3s;
     text-decoration: none;
 }

 .whatsapp-float:hover {
     background-color: #128C7E;
     color: white;
     transform: scale(1.1);
 }

 /* Scroll to top button */
 .scroll-to-top {
     position: fixed;
     bottom: 30px;
     left: 30px;
     background-color: #0a4d8c;
     color: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     text-align: center;
     font-size: 24px;
     line-height: 50px;
     z-index: 100;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transition: all 0.3s;
     display: none;
     text-decoration: none;
 }

 .scroll-to-top:hover {
     background-color: #063a6b;
     color: white;
 }

 /* Contact link styles */
 .contact-link {
     display: block;
     width: 100%;
     word-break: break-word;
     overflow-wrap: break-word;
     text-decoration: none;
     color: inherit;
 }

 .contact-text {
     font-size: 20px;
     font-weight: normal;
     line-height: 1.5;
     word-break: break-word;
     overflow-wrap: break-word;
     max-width: 100%;
 }

 @media (max-width: 768px) {
     .contact-text {
         font-size: 16px !important;
         line-height: 1.4;
     }
 }

 .footer-products-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-products-list li {
     margin-bottom: 8px;
 }

 .footer-products-list li a {
     font-size: 15px;
     line-height: 1.6;
     display: inline-block;
     transition: all 0.3s ease;
     color: #ddd;
     text-decoration: none;
 }

 .footer-products-list li a:hover {
     padding-left: 5px;
     color: #0a4d8c !important;
 }

 /* footer blue shade overrides */
 .section-dark .widget h5 {
     color: #0a4d8c !important;
     font-weight: 600;
 }

 .section-dark .social-icons a {
     background: rgba(10, 77, 140, 0.1);
     color: #0a4d8c;
 }

 .section-dark .social-icons a:hover {
     background: #0a4d8c;
     color: #fff;
 }

 .section-dark .contact-text,
 .section-dark .contact-link {
     color: #fff;
 }

 .section-dark .contact-link:hover .contact-text {
     color: #0a4d8c;
 }

 .section-dark .op-5 {
     color: #aaa;
 }

 /* footer arrow image replacement with blue */
 .footer-blue-arrow {
     display: inline-block;
     width: 60px;
     height: 60px;
     background-color: #0a4d8c;
     mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13.025 1l-2.847 2.828 6.176 6.176h-16.354v3.992h16.354l-6.176 6.176 2.847 2.828 10.975-11z'/%3E%3C/svg%3E") no-repeat center;
     -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13.025 1l-2.847 2.828 6.176 6.176h-16.354v3.992h16.354l-6.176 6.176 2.847 2.828 10.975-11z'/%3E%3C/svg%3E") no-repeat center;
     mask-size: contain;
     -webkit-mask-size: contain;
     background-color: #0a4d8c;
     opacity: 0.8;
 }

 /* Hero Section */
 .why-hero {
     background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     padding: 120px 0 100px;
     color: white;
     position: relative;
     margin-top: 0;
 }

 .why-hero h1 {
     font-size: 4rem;
     font-weight: 800;
     margin-bottom: 20px;
     text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
     animation: fadeInDown 1s ease;
 }

 .why-hero p {
     font-size: 1.3rem;
     opacity: 0.95;
     max-width: 700px;
     margin: 0 auto;
     animation: fadeInUp 1s ease 0.2s both;
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .breadcrumb-custom {
     background: rgba(255, 255, 255, 0.15);
     display: inline-block;
     padding: 10px 25px;
     border-radius: 50px;
     backdrop-filter: blur(5px);
     margin-top: 20px;
     animation: fadeIn 1s ease 0.4s both;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .breadcrumb-custom a {
     color: white;
     text-decoration: none;
     opacity: 0.8;
     transition: 0.3s;
 }

 .breadcrumb-custom a:hover {
     opacity: 1;
 }

 .breadcrumb-custom span {
     color: #ffc107;
     font-weight: 600;
 }

 /* Feature Cards */
 .feature-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     height: 100%;
     position: relative;
 }

 .feature-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 25px 60px rgba(10, 77, 140, 0.2);
 }

 .feature-img {
     height: 220px;
     overflow: hidden;
     position: relative;
 }

 .feature-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .feature-card:hover .feature-img img {
     transform: scale(1.1);
 }

 .feature-img::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 50%;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
 }

 .feature-icon {
     position: absolute;
     bottom: 15px;
     left: 20px;
     z-index: 2;
 }

 .feature-icon i {
     width: 60px;
     height: 60px;
     background: #0a4d8c;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     box-shadow: 0 10px 25px rgba(10, 77, 140, 0.4);
     border: 3px solid white;
     transition: 0.3s;
 }

 .feature-card:hover .feature-icon i {
     background: #0abfcf;
     color: #0a4d8c;
     transform: rotate(360deg);
 }

 .feature-content {
     padding: 25px 20px 30px;
 }

 .feature-content h3 {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: #1a2b3c;
 }

 .feature-content p {
     color: #5a6a7a;
     line-height: 1.7;
     margin: 0;
 }

 /* Values Section */
 .values-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e9f0f9 100%);
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .value-card-modern {
     background: white;
     border-radius: 30px;
     padding: 40px 30px;
     text-align: center;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     height: 100%;
     position: relative;
     z-index: 2;
     border: 1px solid rgba(10, 77, 140, 0.05);
 }

 .value-card-modern:hover {
     transform: translateY(-15px) scale(1.02);
     box-shadow: 0 30px 60px rgba(10, 77, 140, 0.15);
     border-color: rgba(10, 77, 140, 0.1);
 }

 .value-icon-modern {
     width: 120px;
     height: 120px;
     margin: 0 auto 30px;
     background: linear-gradient(135deg, #0a4d8c 0%, #1a6bb8 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 48px;
     color: white;
     position: relative;
     transition: all 0.4s ease;
     box-shadow: 0 20px 30px rgba(10, 77, 140, 0.3);
 }

 .value-card-modern:hover .value-icon-modern {
     transform: rotateY(180deg);
     background: linear-gradient(135deg, #eeeeee 0%, #f6f6f6 100%);
     color: #0a4d8c;
 }

 .value-card-modern h4 {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 20px;
     color: #1a2b3c;
     position: relative;
     display: inline-block;
 }

 .value-card-modern h4::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 40px;
     height: 3px;
     background: #0a4d8c;
     border-radius: 2px;
     transition: 0.4s;
 }

 .value-card-modern p {
     color: #5a6a7a;
     font-size: 1.1rem;
     line-height: 1.7;
     margin: 25px 0 0;
 }

 /* CTA Section */
 .cta-section {
     background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     padding: 100px 0;
     color: white;
     text-align: center;
     margin-top: 50px;
     position: relative;
 }

 .cta-section h2 {
     font-size: 3.5rem;
     font-weight: 800;
     margin-bottom: 20px;
     text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
 }

 .btn-cta {
     background: #ffc107;
     color: #1a2b3c;
     padding: 18px 50px;
     border-radius: 60px;
     font-weight: 700;
     font-size: 1.2rem;
     text-decoration: none;
     display: inline-block;
     margin-top: 30px;
     transition: all 0.4s;
     border: 2px solid transparent;
     letter-spacing: 1px;
     text-transform: uppercase;
     box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-cta:hover {
     background: transparent;
     color: white;
     border-color: #ffc107;
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
 }

 /* Section Titles */
 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 3rem;
     font-weight: 800;
     color: #1a2b3c;
     position: relative;
     display: inline-block;
     padding-bottom: 20px;
 }

 .section-title h2:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, #0a4d8c, #ffc107);
     border-radius: 2px;
 }

 .section-title p {
     color: black;
     font-size: 1.2rem;
     max-width: 700px;
     margin: 20px auto 0;
 }

 /* ===== MOBILE HEADER FIX - SAME AS INDEX ===== */
 @media (max-width: 992px) {
     .header-static {
         position: relative !important;
         background: #0a1a2a !important;
         padding: 10px 0 !important;
         margin: 0 !important;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
         z-index: 9999 !important;
         display: block !important;
     }

     .de-flex {
         display: flex !important;
         align-items: center !important;
         justify-content: space-between !important;
         width: 100% !important;
     }

     #logo {
         display: block !important;
         margin: 0 !important;
         padding: 0 !important;
     }

     #logo img {
         max-height: 45px !important;
         width: auto !important;
         display: block !important;
         /* Make sure image loads and is visible */
         opacity: 1 !important;
         visibility: visible !important;
     }

     .header-col-mid {
         display: none !important;
     }

     #menu-btn {
         display: block !important;
         width: 45px !important;
         height: 45px !important;
         background: #0a4d8c !important;
         border-radius: 8px !important;
         cursor: pointer !important;
         margin-left: 15px !important;
         position: relative !important;
     }

     #menu-btn span {
         display: block !important;
         width: 28px !important;
         height: 3px !important;
         background: white !important;
         margin: 8px auto !important;
         border-radius: 3px !important;
     }

     .mobile-nav {
         display: none !important;
         position: absolute !important;
         top: 80px !important;
         left: 0 !important;
         width: 100% !important;
         background: #0a1a2a !important;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
         z-index: 9999 !important;
         padding: 15px 0 !important;
     }

     .mobile-nav.active {
         display: block !important;
     }

     .mobile-nav ul {
         list-style: none !important;
         margin: 0 !important;
         padding: 0 !important;
     }

     .mobile-nav li {
         margin: 0 !important;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
     }

     .mobile-nav li:last-child {
         border-bottom: none !important;
     }

     .mobile-nav li a {
         display: block !important;
         padding: 12px 20px !important;
         color: white !important;
         text-decoration: none !important;
         font-weight: 600 !important;
         font-size: 14px !important;
         text-transform: uppercase !important;
     }

     .mobile-nav li a:hover {
         background: rgba(10, 77, 140, 0.3) !important;
         color: #0a4d8c !important;
     }

     /* Fix container */
     .container {
         width: 100% !important;
         max-width: 100% !important;
         padding-left: 15px !important;
         padding-right: 15px !important;
     }
 }

 @media (min-width: 993px) {

     #menu-btn,
     .mobile-nav {
         display: none !important;
     }
 }

 #menu-btn {
     display: none;
 }

 @media (max-width: 768px) {
     .why-hero h1 {
         font-size: 2rem;
     }
 }

 body.no-scroll {
     overflow: hidden;
     height: 100vh;
 }