
        
        .amb-certified-section {
            
            padding: 30px 0;
            position: relative;
            overflow: hidden;
            border-top: 2px solid rgba(46, 139, 87, 0.3);
            border-bottom: 2px solid rgba(46, 139, 87, 0.3);
            box-shadow: 0 5px 15px rgba(46, 139, 87, 0.1);
        }
      
        
        .certification-title {
            text-align: center;
            color:rgb(46, 102, 139);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            text-shadow: 0 2px 4px rgba(118, 197, 152, 0.2);

        }
        
        .certification-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, #2e8b57, #5CB85C, #2e8b57);
            border-radius: 3px;
        }
        
        .certification-tagline {
            color: #2e8b57;
            font-weight: 500;
            font-style: italic;
            padding: 10px 20px;
            background-color: rgba(46, 139, 87, 0.1);
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 30px;
            border: 1px dashed #2e8b57;
        }
        
        .certification-item {
            position: relative;
            text-align: center;
            transition: all 0.3s ease;
            padding: 0 15px;
        }
        
        .certification-badge {
            width: 100%;
            height: auto;
            max-height: 150px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 2px solid rgba(46, 139, 87, 0.2);
        }
        
        .certification-item:hover .certification-badge {
            box-shadow: 0 8px 16px rgba(46, 139, 87, 0.2);
            border-color: rgba(46, 139, 87, 0.5);
        }
        
        .certification-caption {
            position: absolute;
            bottom: 0;
            left: 15px;
            right: 15px;
            background: rgba(46, 139, 87, 0.9);
            color: white;
            padding: 8px;
            font-size: 12px;
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .certification-item:hover .certification-caption {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Remove Owl Carousel Navigation Arrows */
        .owl-nav {
            display: none !important;
        }
        
        /* Footer styles */
        .amb-footer-main {
            margin-top: 4px;
            position: relative;
            height: auto;
         
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding-top: 0px !important;
            padding-bottom: 80px !important;
        }

        .amb-footer-content {
            color: white;
            justify-content: space-between;
        }

        .amb-footer-divider {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .amb-footer-line {
            border: 1px solid blue;
            width: 60%;
            height: 3px;
            background-color: blue;
        }

        .amb-footer-section {
            width: 25%;
            color: black;
        }

        .amb-footer-address-box {
            padding-left: 15px;
            border-radius: 6px;
        }

        .amb-footer-address-box p {
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            display: flex;
            align-items: center;
        }

        .amb-footer-address-box i {
            font-size: 18px;
            color: #084298;
            transition: 0.3s;
        }

        .amb-footer-quick-links {
            list-style-type: none;
            padding-left: 0;
        }

        .amb-footer-quick-links li {
            margin: 10px 0;
        }

        .amb-footer-quick-links li a {
            text-decoration: none;
            font-weight: 600;
            color: #084298;
            transition: 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .amb-footer-quick-links li a i {
            font-size: 18px;
            color: #084298;
            transition: 0.3s;
        }

        .amb-footer-quick-links li a:hover {
            color: #0A58CA;
            transform: translateX(5px);
        }

        .amb-footer-quick-links li a:hover i {
            color: #0A58CA;
        }

        .amb-footer-social-links {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
            margin-bottom: 70px;
        }

        .amb-footer-social-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .amb-footer-social-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amb-footer-social-icon {
            font-size: 40px;
            color: #084298;
            transition: 0.3s ease-in-out;
        }

        .amb-footer-logo-container {
            width: 125px !important;
            height: 80px !important;
            object-fit: contain !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amb-footer-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

       
        

        /* Quick Links Two Column Layout */
        .amb-footer-quick-links-container {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .amb-footer-quick-links-col {
            width: 48%;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .certification-badge {
                max-height: 80px;
            }
        }
        
        @media (max-width: 768px) {
            .certification-caption {
                font-size: 10px;
                padding: 5px;
            }
            
            .amb-footer-section {
                width: 100% !important;
                margin-bottom: 30px;
            }
            
            .amb-footer-content {
                flex-direction: column;
            }
            
            .amb-footer-quick-links-container {
                flex-direction: column;
            }
            
            .amb-footer-quick-links-col {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .amb-footer-main {
                height: auto;
                overflow: hidden;
            }
            
            .certification-caption {
                position: static;
                transform: none;
                opacity: 1;
                background: rgba(46, 139, 87, 0.7);
                margin-top: -4px;
                border-radius: 0 0 6px 6px;
                left: 0;
                right: 0;
            }
            
            .amb-footer-policy-container {
                flex-direction: column !important;
                align-items: center;
                gap: 10px;
            }
            
            .amb-footer-social-container ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .amb-footer-logo-container {
                order: 0;
                width: 100px !important;
                height: 60px !important;
            }
        }

        /* General Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #1a1a1a;
            margin: 0;
            padding: 0;
            overflow-x: none;
        }

        .amb-footer-heading {
            font-weight: bolder;
            font-size: 25px;
            color: #084298;
        }

        .amb-footer-link {
            text-decoration: none;
            color: #0054A9;
            font-size: 17px;
            font-weight: 400;
        }

        .amb-footer-link:hover {
            color: #0D6EFD;
        }

        .amb-footer-contact-link {
            text-decoration: none;
            color: black;
            transition: 0.2s ease-in-out;
            font-weight: bolder;
        }

        .amb-footer-contact-link:hover {
            color: rgb(6, 48, 110);
        }
        
        /* Social links container */
        .social-links-wrapper {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 20px;
        }
        
        .social-links-list {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 500px;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        
        .social-links-list li {
            flex: 1;
            display: flex;
            justify-content: center;
        }
    
body {
  font-family: 'Poppins', sans-serif !important;
}